Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rank Suppliers by Missed Windows

MediumSQL · PostgreSQL00:00
Practice interviewer
In session
5 left
00:00

Your question is Rank Suppliers by Missed Windows. Start with the requirements and the three tables on the right.

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.

Problem

You are given shipment planning and receipt data from Lucid Motors supplier operations. Write a SQL query to identify which suppliers most frequently miss their delivery windows for shipments scheduled in March 2024. A shipment counts as missed if the actual arrival timestamp is before the scheduled window start, after the scheduled window end, or missing entirely because nothing was received. Return each supplier's total scheduled shipments, number of missed shipments, and missed-window rate, ordered from worst to best.

Schema

suppliers
ColumnTypeDescription
supplier_idPKINTUnique supplier identifier
supplier_nameVARCHAR(100)Supplier name
regionVARCHAR(50)Supplier region
inbound_shipments
ColumnTypeDescription
shipment_idPKINTUnique shipment identifier
supplier_idINTSupplier linked to the shipment
lucid_plantVARCHAR(50)Lucid Motors receiving site
scheduled_window_startTIMESTAMPScheduled delivery window start
scheduled_window_endTIMESTAMPScheduled delivery window end
shipment_receipts
ColumnTypeDescription
receipt_idPKINTUnique receipt event identifier
shipment_idINTShipment tied to the receipt
actual_arrival_tsTIMESTAMPActual arrival timestamp
Tablessuppliersinbound_shipmentsshipment_receipts
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results