Procurement & Sourcing Analytics · Mission 2 of 30Starter

Category catalog

SELECT all rows from a dimension, sorted

The Brief

Maya ChenProcurement Directorprocurement-ops

Pull every category from `dim_categories` sorted alphabetically by `category_name`. I want to see manager and spend type for each.

You'll practice

ORDER BY

Tables & columns available

dim_categoriesdim4 columns
ColumnTypeKey
category_idINTPK
category_nameTEXT
category_managerTEXT
spend_typeTEXT

Hints (3)

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

Hint 1

Single-table query against dim_categories.

Hint 2

ORDER BY category_name ascending.

Hint 3

No filter — all 8 categories.