Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rolling 7-Day Energy Average

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

Your question is Rolling 7-Day Energy 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

Omaha Public Power District (OPPD) needs a customer-level view of recent electricity consumption. Write a PostgreSQL query that first consolidates readings recorded on the same date, then calculates each customer's rolling calendar-based 7-day average usage.

Requirements

  1. Join customers to energy_usage and return only usage associated with a known customer.
  2. Aggregate multiple readings for the same customer and date into one daily usage value using AVG.
  3. Use a window function partitioned by customer and ordered by date. The rolling window must include the current date and the six preceding calendar days, excluding older dates even when some dates have no readings.
  4. Return results ordered by customer ID and usage date, with the rolling average rounded to two decimal places. NULL readings should be ignored by PostgreSQL's aggregate functions.

Schema

customers
ColumnTypeDescription
customer_idPKINTEGERUnique OPPD customer identifier
customer_nameVARCHAR(100)Customer name
energy_usage
ColumnTypeDescription
usage_idPKINTEGERUnique usage reading identifier
customer_idINTEGERReferences customers.customer_id
usage_dateDATEDate of the usage reading
kwh_usedNUMERIC(10,2)Energy consumed in kilowatt-hours
Tablescustomersenergy_usage
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results