Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL: 7-Day Rolling Average

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

Your question is SQL: 7-Day 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

CVS Health operations leaders need a daily view of sales trends across CVS Pharmacy locations. Write a PostgreSQL query that calculates each store's 7-day rolling average of daily sales for January 1 through January 7, 2024.

Requirements

  1. Aggregate transaction amounts into one daily sales total per store and date.
  2. Join the daily totals to the CVS store dimension to return the store code and name.
  3. Calculate a calendar-based 7-day rolling average using a window function. Average only the dates with recorded sales, and round the result to two decimal places.
  4. Return results ordered by store code and sale date.

Schema

stores
ColumnTypeDescription
store_idPKINTEGERUnique CVS store identifier
store_codeVARCHAR(10)CVS store code
store_nameVARCHAR(100)Store location name
store_transactions
ColumnTypeDescription
transaction_idPKINTEGERUnique transaction identifier
store_idINTEGERReferences stores.store_id
sale_dateDATEDate of the transaction
sale_amountNUMERIC(12,2)Sales amount for the transaction
Tablesstoresstore_transactions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results