Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rolling 7-Day Sales Average

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

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

BASF wants to monitor daily sales trends for products tracked in its commercial sales system. Write a PostgreSQL query that calculates a rolling 7-day average of completed sales for each product.

Requirements

  1. Aggregate completed transactions into one daily sales total per product, treating missing sales days as zero.
  2. Generate a continuous calendar between each product's first and last completed sale.
  3. Calculate the average across the current day and previous six calendar days using a window function.
  4. Return product name, date, daily sales, and the rolling average, ordered by product and date.

Schema

products
ColumnTypeDescription
product_idPKINTEGERUnique product identifier
product_nameVARCHAR(100)BASF product name
business_unitVARCHAR(100)Product business unit
sales
ColumnTypeDescription
sale_idPKINTEGERUnique sales transaction identifier
product_idINTEGERReferences products.product_id
sale_dateDATEDate of the transaction
sale_amountNUMERIC(12,2)Transaction sales value
statusVARCHAR(20)Transaction status
Tablesproductssales
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results