Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Rolling Average Downtime Query
00:00
5 left

Rolling Average Downtime Query

MediumSQL · PostgreSQL

Problem

Write a query using SQL window functions to calculate a rolling average of machine downtime over the last 30 days.

Use the provided machine and downtime event data. Calculate the average downtime for each machine at every recorded event, including events within the preceding 30 days and the current event. Exclude events that cannot be matched to a machine.

Output

  1. One row per matched downtime event
  2. Columns: machine_id, machine_name, event_id, event_timestamp, downtime_minutes, and rolling_avg_downtime
  3. Order by machine_id, event_timestamp, and event_id

Schema

machines
ColumnTypeDescription
machine_idPKINTUnique machine identifier
machine_nameVARCHAR(100)Machine name
downtime_events
ColumnTypeDescription
event_idPKINTUnique downtime event identifier
machine_idINTMachine associated with the event
event_timestampTIMESTAMPTimestamp when downtime was recorded
downtime_minutesINTDuration of downtime in minutes
Tablesmachinesdowntime_events
Interviewer

Your question is Rolling Average Downtime Query. 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.