Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Rolling Average by City
00:00
5 left

SQL Rolling Average by City

MediumSQL · PostgreSQL

Problem

Write a SQL query using window functions to compute a 7-day rolling average of orders by city.

Use the orders table. Count only completed orders, exclude rows with a missing city, and treat dates without orders as zero-order days within each city's available date range.

Output

  1. One row per city and calendar date in that city's range
  2. Columns: city, order_date, daily_orders, and rolling_7_day_avg
  3. Include the current date and previous six calendar days in the average, rounded to two decimal places
  4. Sort by city, then order_date

Schema

orders
ColumnTypeDescription
order_idPKINTUnique order identifier
cityVARCHAR(100)City where the order was placed
order_dateDATEDate when the order was placed
statusVARCHAR(30)Order lifecycle status
Tablesorders
Interviewer

Your question is SQL Rolling Average by City. Start with the requirements and the one table 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.