Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Rolling 7-Day Production Average
00:00
5 left

Rolling 7-Day Production Average

MediumSQL · PostgreSQL

Problem

Write a SQL query utilizing window functions to calculate a rolling 7-day average of production output.

Use the production_output table. Treat dates without production records and NULL output values as zero. The rolling average should include the current date and the six preceding calendar dates.

Output

  1. One row per calendar date from the minimum through maximum production date.
  2. Columns: production_date, daily_output, and rolling_7_day_average.
  3. Order by production_date ascending.

Schema

production_output
ColumnTypeDescription
production_idPKINTUnique production record identifier
production_dateDATEDate of production
output_unitsNUMERIC(10,2)Units produced in the record
Tablesproduction_output
Interviewer

Your question is Rolling 7-Day Production Average. Start with the requirements and the one table 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.