# Sample: retail_orders

Synthetic retail order lines for Databricks tutorials. **Not real customer data.**

| Column | Type | Notes |
|--------|------|-------|
| order_id | string | `ORD-######` |
| customer_id | string | `C####` |
| order_ts | timestamp (ISO-8601 UTC) | |
| sku | string | SKU-A..D |
| qty | int | 1–8 |
| unit_price_usd | float | |
| region | string | us-east / us-west / eu-west / ap-southeast |

- Rows: 5,000
- File: `retail_orders.csv`
- License: CC0 1.0 (public domain dedication) — free to copy into your workspace
- Intended use: load into a Databricks table, run a Jobs cluster, then compare cost in `/tools/cost/`

## Load sketch (Databricks)

```sql
CREATE OR REPLACE TABLE samples.retail_orders AS
SELECT * FROM read_files('/path/to/retail_orders.csv', format => 'csv', header => true);
```
