Operations & Supply Chain Analytics · Mission 3 of 30Starter

How many SKUs do we stock?

COUNT — peek at the SKU dim and produce a single scalar.

The Brief

Maya ChenOps Directorslack-dm

While we're at it — how many SKUs are in `dim_skus`? Just a count. (Heads up: there's at least one duplicated `sku_code` in there from a bad load. Just count rows, don't worry about dedup'ing for now — we'll handle that in a follow-up mission.)

You'll practice

COUNTDim audit

Tables & columns available

dim_skusdim6 columns
ColumnTypeKey
sku_idINTPK
sku_codeTEXT
sku_nameTEXT
categoryTEXT
unit_costREAL
reorder_pointINT

Hints (3)

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

Hint 1

One table: `dim_skus`. Count its rows with `COUNT(*)`.

Hint 2

The full query is `SELECT COUNT(*) FROM dim_skus`.

Hint 3

30 rows total. The duplicated sku_code rows DO count separately because they have different `sku_id`s — that's exactly the data quality issue.