Operations & Supply Chain Analytics · Mission 4 of 30Starter

List our SKU categories

DISTINCT — pull the unique values of a column.

The Brief

Raj PatelProcurement Managerslack-dm

I'm setting up the procurement dashboard categories. What categories do we have in `dim_skus`? Just the distinct list, one column. Don't worry about counting or normalizing — I want to see them raw so I can spot any drift.

You'll practice

DISTINCTDim 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

Use `SELECT DISTINCT category FROM dim_skus`.

Hint 2

ORDER BY category for readability.

Hint 3

You'll see 6 rows — there's a planted casing-drift bug ('Electronics' vs 'electronics'). Raj wants to see them as-is so he knows the dim is dirty.