SELECT * — preview a small dim and read its shape.
Quick follow-up — pull every row from `dim_warehouses`. I want to see warehouse_id, warehouse_name, and region for each one. Should be a short list.
| Column | Type | Key |
|---|---|---|
| warehouse_id | INT | PK |
| warehouse_name | TEXT | |
| region | TEXT |
Each hint you reveal reduces the XP you can earn. Try the query first.
All three columns, all rows — `SELECT * FROM dim_warehouses` is the whole query.
No WHERE, no LIMIT. Maya wants every warehouse.
Four rows total. If you're seeing more or fewer, double-check the table name.