Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rolling 30-Day User Average

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

Your question is Rolling 30-Day User Average. 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

Business Context

Bidgely uses interval energy data to monitor household consumption patterns. A rolling average helps smooth daily variation and supports customer insights in the Bidgely EnergyAI platform.

Task

Write a PostgreSQL query to calculate the rolling average daily energy consumption for each user over a 30-day period.

Requirements

  1. Aggregate multiple readings for the same user and calendar date into one daily average.
  2. Calculate a rolling average using the current date and the preceding 29 calendar days, partitioned by user.
  3. Include users with valid readings, preserve NULL consumption behavior, and order the results by user and date.
  4. Round daily and rolling averages to two decimal places.

Schema

users
ColumnTypeDescription
user_idPKINTEGERBidgely user identifier
user_nameVARCHAR(100)User display name
energy_readings
ColumnTypeDescription
reading_idPKINTEGERUnique energy reading identifier
user_idINTEGERReferenced Bidgely user identifier
reading_dateDATEDate of the energy measurement
consumption_kwhNUMERIC(10,2)Energy consumption in kilowatt-hours
Tablesusersenergy_readings
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results