Warehouse Operations Analytics · Mission 1 of 30Starter

Zone count

COUNT(*) on a dimension

The Brief

Rita AlvarezDC Operations Managerwarehouse-ops

Welcome to the DC. First task — how many distinct pick zones are configured in `dim_zones`? Single number, alias `zone_count`.

You'll practice

COUNT

Tables & columns available

dim_zonesdim4 columns
ColumnTypeKey
zone_idINTPK
zone_nameTEXT
velocity_targetTEXT
pick_travel_multiplierREAL

Hints (3)

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

Hint 1

There's a single-table aggregate that returns one number — count every row in the zone dim.

Hint 2

Single column.

Hint 3

Alias as zone_count.