Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rolling 7-Day Average Query

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

Your question is Rolling 7-Day Average Query. 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

Deliveroo’s operations team wants to monitor daily completed order volume without losing dates that had no completed orders. Write a PostgreSQL query that returns the daily order count and its rolling seven-day average.

Requirements

  1. Count only orders with status = 'completed' and a matching restaurant.
  2. Include every calendar date between the earliest and latest order dates, showing zero for dates without completed orders.
  3. Calculate the average order volume for the current date and up to the six preceding calendar dates.
  4. Return results in ascending date order, rounded to two decimal places.

Schema

orders
ColumnTypeDescription
order_idPKINTUnique order identifier
restaurant_idINTRestaurant associated with the order
order_dateDATEDate the order was placed
statusVARCHAR(20)Current order status
restaurants
ColumnTypeDescription
restaurant_idPKINTUnique restaurant identifier
restaurant_nameVARCHAR(100)Restaurant name
cityVARCHAR(80)Restaurant city
Tablesordersrestaurants
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results