Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Rolling Average Energy SQL
00:00
5 left

Rolling Average Energy SQL

MediumSQL · PostgreSQL

Problem

Write a SQL query to calculate the rolling average of energy consumption for a set of buildings over a seven-day window.

Use the provided building and energy-consumption data. Aggregate multiple readings for the same building and date before calculating the rolling average. The window includes the current date and the preceding six calendar days.

Output

  1. One row per building and recorded consumption date.
  2. Columns: building_name, reading_date, daily_consumption, and rolling_7_day_avg.
  3. Include only dates with recorded consumption, order by building_id, then reading_date.

Schema

buildings
ColumnTypeDescription
building_idPKINTUnique building identifier
building_nameVARCHAR(100)Building name
regionVARCHAR(50)Geographic operating region
energy_consumption
ColumnTypeDescription
reading_idPKINTUnique energy reading identifier
building_idINTBuilding associated with the reading
reading_dateDATEDate of energy consumption
energy_kwhNUMERIC(10,2)Energy consumed in kilowatt-hours
Tablesbuildingsenergy_consumption
Interviewer

Your question is Rolling Average Energy SQL. 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.