Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Window Functions Rolling Average

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

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

AArete analysts need a smoothed view of regional sales performance. Write a PostgreSQL query that calculates a rolling average of daily completed sales for each region.

Requirements

  1. Join sales to stores to obtain the region.
  2. Include only completed sales from January 1 through January 4, 2024, then aggregate sales by region and sale date.
  3. Calculate the average of the current day and the two preceding recorded sales days within each region. Round the result to two decimal places.
  4. Return all regional dates, including dates whose completed sales amount is NULL, and order by region and date.

Schema

stores
ColumnTypeDescription
store_idPKINTUnique store identifier
store_nameVARCHAR(100)Store name
regionVARCHAR(50)Operating region
sales
ColumnTypeDescription
sale_idPKINTUnique sale identifier
store_idINTStore associated with the sale
sale_dateDATEDate on which the sale occurred
amountDECIMAL(10,2)Sale amount, possibly NULL
statusVARCHAR(20)Transaction status
Tablesstoressales
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results