Sample e-commerce orders CSV.
An order-header table: order ID, customer reference, date, status, item count, subtotal, shipping and total. Pairs with the Customers and Product Catalog datasets for join demos.
An order-header table: order ID, customer reference, date, status, item count, subtotal, shipping and total. Pairs with the Customers and Product Catalog datasets for join demos.
The small files are static downloads. The large ones are generated in your browser from the same fixed seed, so every copy of orders-100000.csv on earth is byte-identical — reproducible test data with no 60 MB download.
→ Open this dataset in the dashboard builder · → Open in the CSV editor
| order_id | customer_id | order_date | status | items | subtotal | shipping | total |
|---|---|---|---|---|---|---|---|
| ORD-700001 | C-10001 | 2024-01-01 | delivered | 4 | 473.07 | 4.95 | 478.02 |
| ORD-700002 | C-10002 | 2024-04-01 | cancelled | 1 | 374.79 | 9.95 | 384.74 |
| ORD-700003 | C-10003 | 2024-07-01 | processing | 6 | 511.27 | 4.95 | 516.22 |
| ORD-700004 | C-10004 | 2024-09-30 | delivered | 7 | 88.92 | 0.00 | 88.92 |
| ORD-700005 | C-10005 | 2024-12-31 | delivered | 4 | 627.85 | 4.95 | 632.80 |
| ORD-700006 | C-10006 | 2025-04-01 | delivered | 3 | 96.99 | 0.00 | 96.99 |
| ORD-700007 | C-10007 | 2025-07-01 | delivered | 6 | 421.90 | 0.00 | 421.90 |
| ORD-700008 | C-10008 | 2025-09-30 | shipped | 9 | 518.85 | 4.95 | 523.80 |
| column | description |
|---|---|
order_id | Order number |
customer_id | Joins to the Customers dataset |
order_date | Order date across two years |
status | Fulfilment status |
items | Line-item count |
subtotal | Goods total (USD) |
shipping | Shipping charge |
total | subtotal + shipping |
customer_id values overlap the Customers dataset's ID range, so you can demonstrate inner and left joins with realistic match rates.
Total is exactly subtotal + shipping; statuses follow a believable funnel (mostly delivered, some shipped, a few cancelled or refunded).
Good for: Multi-file JOIN demos with Customers · Order-funnel and status charts · Testing money-column parsing.
License: CC0 / public domain — use it anywhere, no attribution needed.
The ID format and range line up (C-10001 …), but each row's reference is its own sequence — so joins demo cleanly at small sizes; at 1M orders most IDs exceed a 1k customer file, which is realistic too.
CC0 (public domain). Use it in tutorials, tests, courses, screenshots and products — no attribution required.
Yes — every size is generated from a fixed seed, so the same file is byte-identical for everyone, forever. Reproducible tests, stable teaching materials.