Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Average Delay by Time
00:00
5 left

SQL Average Delay by Time

MediumSQL · PostgreSQL

Problem

Write a SQL query to calculate the average delay time per line, grouped by time of day for Transport for London.

Use the supplied TfL line and service event data. Include only completed events with a recorded delay.

Output

  1. One row per line and time-of-day category, with columns line_name, time_of_day, and average_delay_minutes.
  2. Sort by line name alphabetically, then Morning, Afternoon, Evening, and Night.

Schema

tfl_lines
ColumnTypeDescription
line_idPKINTUnique identifier for a TfL line
line_nameVARCHAR(50)TfL line name
service_events
ColumnTypeDescription
event_idPKINTUnique service event identifier
line_idINTTfL line associated with the event
recorded_atTIMESTAMPTimestamp when the event was recorded
delay_minutesNUMERIC(8,2)Recorded delay in minutes
statusVARCHAR(20)Service event status
Tablestfl_linesservice_events
Interviewer

Your question is SQL Average Delay by Time. 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.