Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Weekly Logistics KPI SQL
00:00
5 left

Weekly Logistics KPI SQL

MediumSQL · PostgreSQL

Problem

Write a SQL query to track weekly logistics KPIs by site, including shipments, on-time delivery rate, and backlog, and compare them to the prior week.

Use the sites and shipments tables. Treat delivered shipments as on time when delivered_at is on or before promised_at; calculate the rate among delivered shipments and treat non-delivered shipments as backlog.

Output

  1. One row per site and calendar week in the available shipment date range.
  2. Columns: site_name, week_start, shipment_count, on_time_delivery_rate, backlog_count, and prior-week equivalents for all three KPIs.
  3. Include sites with no shipments, order by site_id and week_start.

Schema

sites
ColumnTypeDescription
site_idPKINTUnique logistics site identifier
site_nameVARCHAR(100)Logistics site name
shipments
ColumnTypeDescription
shipment_idPKINTUnique shipment identifier
site_idINTSite handling the shipment
shipment_dateDATEDate the shipment entered the reporting workflow
statusVARCHAR(30)Current shipment status
promised_atDATEPromised delivery date
delivered_atDATEActual delivery date
Tablessitesshipments
Interviewer

Your question is Weekly Logistics KPI SQL. Start with the requirements and the two tables in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.