Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Weekly Shipment Performance
00:00
5 left

SQL for Weekly Shipment Performance

MediumSQL · PostgreSQL

Problem

Write a SQL query to analyze weekly shipment performance by warehouse, including on-time rate, late shipments, and average transit time for Verkada.

Use shipped date to determine the week. Exclude undelivered shipments from punctuality metrics, and exclude shipments without a promised date from on-time calculations.

Output

  1. One row per warehouse and shipment week.
  2. Columns: warehouse_name, week_start, on_time_rate, late_shipments, and avg_transit_days.
  3. Include only warehouses with shipments, order by warehouse name and week, and report rates and averages rounded to two decimal places.

Schema

warehouses
ColumnTypeDescription
warehouse_idPKINTUnique warehouse identifier
warehouse_nameVARCHAR(100)Warehouse display name
regionVARCHAR(50)Geographic operating region
shipments
ColumnTypeDescription
shipment_idPKINTUnique shipment identifier
warehouse_idINTWarehouse that dispatched the shipment
shipped_atDATEDate the shipment left the warehouse
promised_atDATEPromised delivery date
delivered_atDATEActual delivery date, or NULL if not delivered
Tableswarehousesshipments
Interviewer

Your question is SQL for Weekly Shipment Performance. 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.