Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Rolling Average and Ranking

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

Your question is SQL Rolling Average and Ranking. 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

Loft wants to compare user activity across regions using transaction volume. Write a PostgreSQL query that calculates each user's seven-day rolling average of completed transactions and ranks users within their region as of January 10, 2024.

Requirements

  1. Consider the seven calendar days from January 4 through January 10, including days with zero transactions.
  2. Count only transactions whose status is completed; exclude pending and cancelled transactions.
  3. Calculate each user's average daily completed transaction count across the seven-day window.
  4. Rank users within each region by descending rolling average using a window function. Tied averages must receive the same rank.
  5. Include users with no completed transactions and sort the final output by region, rank, and user ID.

Schema

users
ColumnTypeDescription
user_idPKINTEGERUnique Loft user identifier
user_nameVARCHAR(100)User's display name
regionVARCHAR(50)User's operating region
transactions
ColumnTypeDescription
transaction_idPKINTEGERUnique transaction identifier
user_idINTEGERUser associated with the transaction
transaction_dateDATEDate the transaction occurred
statusVARCHAR(20)Transaction processing status
Tablesuserstransactions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results