Logistics & Transportation Analytics · Mission 2 of 30Starter

Meet the carrier network

SELECT all columns from a dimension table, sorted by a text column

The Brief

Maya ChenLogistics Analystlogistics-ops

I'm building the carrier directory for our ops deck. Pull all 8 carriers from `dim_carriers` — every column — sorted alphabetically by `carrier_name`. I want to see mode, SCAC code, target OTD, and HQ state for each one.

You'll practice

ORDER BY

Tables & columns available

dim_carriersdim6 columns
ColumnTypeKey
carrier_idINTPK
carrier_nameTEXT
scacTEXT
modeTEXT
on_time_target_pctREAL
hq_stateTEXT

Hints (3)

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

Hint 1

Single-table query — `dim_carriers` is the dimension, no JOIN needed. Project all columns.

Hint 2

Sort the result by `carrier_name` ascending — that's the default direction for ORDER BY.

Hint 3

No WHERE filter — all 8 carriers should appear in the output.