Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Rolling 7-Day Average Query
00:00
5 left

Rolling 7-Day Average Query

MediumSQL · PostgreSQL

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
Interviewer

Your question is Rolling 7-Day Average Query. Start with the requirements and the two tables in the Question tab.

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.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.