Warehouse Operations Analytics · Mission 2 of 30Starter

Worker roster

SELECT all from a dimension

The Brief

Rita AlvarezDC Operations Managerwarehouse-ops

Pull the full roster from `dim_workers` sorted by hire_date ascending. I want to see worker_id, worker_name, role, shift_preference.

You'll practice

ORDER BY

Tables & columns available

dim_workersdim5 columns
ColumnTypeKey
worker_idINTPK
worker_nameTEXT
hire_dateTEXT
roleTEXT
shift_preferenceTEXT

Hints (3)

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

Hint 1

Single-table SELECT.

Hint 2

ORDER BY hire_date ASC.

Hint 3

Project four columns.