Skip to content

Commit 471d700

Browse files
authored
docs: add getting-started walkthrough
1 parent e1f8452 commit 471d700

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

docs/getting-started.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)