We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1f8452 commit 471d700Copy full SHA for 471d700
1 file changed
docs/getting-started.md
@@ -0,0 +1,24 @@
1
+# Getting Started (patterns-only)
2
+
3
+This repo is sanitized (no client code/data). Use this mini flow to **see the patterns**.
4
5
+## Prereqs
6
+- BigQuery **Sandbox** (free) in your Google account
7
+- Cloud Shell or local `bq` CLI (optional for the load step)
8
9
+---
10
11
+## 1) Create a demo dataset + table (DDL)
12
13
+```sql
14
+CREATE SCHEMA IF NOT EXISTS fx_demo;
15
16
+CREATE TABLE IF NOT EXISTS fx_demo.events (
17
+ ts TIMESTAMP,
18
+ pair STRING,
19
+ px NUMERIC,
20
+ qty INT64,
21
+ src STRING
22
+)
23
+PARTITION BY DATE(ts)
24
+CLUSTER BY pair;
0 commit comments