Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Window Ranking by Delay
00:00
5 left

SQL Window Ranking by Delay

MediumSQL · PostgreSQL

Problem

Write a SQL query using window functions to rank aircraft by monthly delay minutes within each airline and calculate a running total.

Use the provided airlines, aircraft, and flight_delays tables.

Output

  1. Return one row per aircraft, airline, and month with airline_name, aircraft_id, month_start, monthly_delay_minutes, monthly_rank, and airline_running_delay_minutes.
  2. Rank higher monthly delay totals first within each airline and month. Ties share a rank.
  3. Order by airline_name, month_start, and monthly_rank.

Schema

airlines
ColumnTypeDescription
airline_idPKINTUnique airline identifier
airline_nameVARCHAR(100)Airline name
aircraft
ColumnTypeDescription
aircraft_idPKINTUnique aircraft identifier
airline_idINTOwning airline identifier
registrationVARCHAR(20)Aircraft registration code
aircraft_modelVARCHAR(50)Aircraft model
flight_delays
ColumnTypeDescription
delay_idPKINTUnique delay record identifier
aircraft_idINTAircraft associated with the delay
flight_dateDATEDate of the flight
delay_minutesINTFlight delay duration in minutes
Tablesairlinesaircraftflight_delays
Interviewer

Your question is SQL Window Ranking by Delay. Start with the requirements and the three 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.