Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Ranking by Weekly Sales Growth

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

Your question is SQL Ranking by Weekly Sales Growth. 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

Domino's Operations leadership wants to identify stores with the strongest week-over-week sales improvement. Write a PostgreSQL query using the stores and weekly_store_sales tables.

Calculate growth from the week beginning 2025-01-27 to the week beginning 2025-02-03.

Requirements

  1. Aggregate sales for each store in both weeks and exclude stores missing either week's sales.
  2. Calculate each store's percentage sales growth, rounded to two decimal places.
  3. Rank qualifying stores across all regions by growth, with the highest growth ranked first.
  4. Include the average growth for the store's region and the difference between the store's growth and that regional average.

Schema

stores
ColumnTypeDescription
store_idPKINTEGERUnique Domino's store identifier
store_nameVARCHAR(100)Store display name
regionVARCHAR(50)Operations region
weekly_store_sales
ColumnTypeDescription
sales_idPKINTEGERUnique weekly sales record
store_idINTEGERStore associated with the sales record
week_startDATEFirst day of the sales week
sales_amountNUMERIC(12,2)Total store sales for the week
Tablesstoresweekly_store_sales
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results