Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Running Totals

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

Your question is SQL Running Totals. Start with the requirements and the two 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

Pratt & Whitney analysts need to monitor completed inspection effort across engine programs. Write a PostgreSQL query that summarizes inspection hours by engine model and calendar month, then calculates a chronological running total for each model.

Requirements

  1. Join work orders to engine programs and include only work orders with status = 'Completed' and a non-null completion date.
  2. Aggregate inspection hours by engine model and completion month, treating null hours as zero.
  3. Use a window function to calculate the cumulative hours for each engine model, ordered by month. Return results ordered by engine model and month.

Schema

engine_programs
ColumnTypeDescription
program_idPKINTUnique engine program identifier
engine_modelVARCHAR(40)Pratt & Whitney engine model name
aircraft_platformVARCHAR(60)Primary aircraft platform using the engine
work_orders
ColumnTypeDescription
work_order_idPKINTUnique work order identifier
program_idINTEngine program identifier from the operational work-order feed
completed_atDATEDate the work order was completed
statusVARCHAR(20)Current work order status
inspection_hoursNUMERIC(8,2)Hours recorded for the inspection
Tablesengine_programswork_orders
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results