Operations & Supply Chain Analytics · Mission 2 of 30Starter

Show me the warehouses

SELECT * — preview a small dim and read its shape.

The Brief

Maya ChenOps Directorslack-dm

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.

You'll practice

SELECT *Dim preview

Tables & columns available

dim_warehousesdim3 columns
ColumnTypeKey
warehouse_idINTPK
warehouse_nameTEXT
regionTEXT

Hints (3)

Each hint you reveal reduces the XP you can earn. Try the query first.

Hint 1

All three columns, all rows — `SELECT * FROM dim_warehouses` is the whole query.

Hint 2

No WHERE, no LIMIT. Maya wants every warehouse.

Hint 3

Four rows total. If you're seeing more or fewer, double-check the table name.