Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Route Delay Analysis
00:00
5 left

SQL for Route Delay Analysis

MediumSQL · PostgreSQL

Problem

Write a SQL query to identify shipping routes that have experienced a higher-than-average delay over the past quarter at XPO.

Use the provided data for the past quarter, from October 1, 2024 through December 31, 2024. Exclude shipments with unknown delay values and return only routes whose average delay exceeds the overall shipment average.

Output

  1. One row per qualifying route with route_id, origin, destination, shipment_count, avg_delay_minutes, and overall_avg_delay_minutes.
  2. Order by avg_delay_minutes descending, then route_id ascending.

Schema

routes
ColumnTypeDescription
route_idPKINTUnique XPO shipping route identifier
originVARCHAR(100)Route origin city
destinationVARCHAR(100)Route destination city
shipments
ColumnTypeDescription
shipment_idPKINTUnique shipment identifier
route_idINTRoute used by the shipment
shipment_dateDATEShipment operating date
delay_minutesINTShipment delay in minutes; NULL means unknown
Tablesroutesshipments
Interviewer

Your question is SQL for Route Delay Analysis. 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.