Logistics & Transportation Analytics · Mission 1 of 30Starter

First look at the shipment roster

SELECT * with LIMIT to preview the core shipment fact table

The Brief

Maya ChenLogistics Analystlogistics-ops

Welcome to the logistics desk. Before we dive into OTD or cost analytics, I need you to get a feel for the shipment data. Pull the first 10 rows of `fact_shipments` — every column. I just want to see the row shape and understand what fields we're working with.

You'll practice

LIMITSELECT *

Tables & columns available

fact_shipmentsfact15 columns
ColumnTypeKey
shipment_idINTPK
carrier_idINTFK → dim_carriers
lane_idINTFK → dim_lanes
planned_pickup_dateTEXT
actual_pickup_dateTEXT
planned_delivery_dateTEXT
actual_delivery_dateTEXT
qty_orderedINT
qty_shippedINT
weight_lbsREAL
freight_costREAL
fuel_surchargeREAL
accessorial_costREAL
dwell_hours_at_originREAL
statusTEXT

Hints (3)

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

Hint 1

You can't pull a million-row table without a cap. Use the clause that limits rows returned.

Hint 2

LIMIT followed by an integer caps the result set at that number of rows.

Hint 3

The query reads from one table only — combine the projection clause and a row cap to cover both asks.