Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Rolling Average Machine Temperatures
00:00
5 left

Rolling Average Machine Temperatures

MediumSQL · PostgreSQL

Problem

Write a SQL query to calculate the rolling average of machine temperatures over a moving seven-day window at Siemens.

Use the machines and machine_temperature_readings tables. The window includes the current reading date and the six preceding calendar days. Retain readings whose temperature is NULL, but exclude them from average calculations.

Output

  1. One row per machine reading, with machine_id, machine_name, reading_date, temperature_c, and rolling_avg_7d.
  2. Include only readings associated with a machine.
  3. Order by machine_id, reading_date, and reading_id.

Schema

machines
ColumnTypeDescription
machine_idPKINTUnique machine identifier
machine_nameVARCHAR(100)Display name of the Siemens machine
machine_temperature_readings
ColumnTypeDescription
reading_idPKINTUnique temperature reading identifier
machine_idINTMachine that produced the reading
reading_dateDATECalendar date of the reading
temperature_cNUMERIC(5,2)Temperature in degrees Celsius
Tablesmachinesmachine_temperature_readings
Interviewer

Your question is Rolling Average Machine Temperatures. 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.