Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rolling Average with SQL Window Functions

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

Your question is Rolling Average with SQL Window Functions. 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

WSP monitors infrastructure through sensor networks used in asset and environmental monitoring. Write a PostgreSQL query that calculates a rolling 30-day average for each active sensor.

Requirements

  1. Join sensor_readings to sensors and include only active sensors.
  2. Return each reading with its sensor code, timestamp, and raw reading value.
  3. Calculate the average of the current reading and all readings for the same sensor from the preceding 29 calendar days. This creates an inclusive 30-day window.
  4. Ignore NULL reading values using PostgreSQL aggregate behavior, and order the output by sensor code and reading timestamp.

Schema

sensors
ColumnTypeDescription
sensor_idPKINTEGERUnique sensor identifier
sensor_codeVARCHAR(30)WSP sensor reference code
locationVARCHAR(100)Sensor installation location
is_activeBOOLEANWhether the sensor is currently monitored
sensor_readings
ColumnTypeDescription
reading_idPKINTEGERUnique reading identifier
sensor_idINTEGERReferenced sensor identifier
recorded_atTIMESTAMPTime when the reading was recorded
reading_valueNUMERIC(10,2)Measured sensor value
Tablessensorssensor_readings
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results