Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rank Users With Window Functions

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

Your question is Rank Users With Window Functions. 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

Brooksource wants a regional view of user spending across its analytics platform. Write a PostgreSQL query that calculates each user's completed purchase total for 2025 and ranks users within their region.

Requirements

  1. Include every user, including users with no qualifying purchases, with their total spend shown as zero.
  2. Use RANK() partitioned by region and ordered by total spend descending. Users tied on spend must share the same rank.
  3. Include only purchases with status completed and a purchase date in 2025.
  4. Return results ordered by region, total spend descending, and user ID as a deterministic tie-breaker.

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
user_nameVARCHAR(100)User's full name
regionVARCHAR(50)User's assigned region
purchases
ColumnTypeDescription
purchase_idPKINTUnique purchase identifier
user_idINTUser who made the purchase
purchase_dateDATEDate the purchase was recorded
amountNUMERIC(10,2)Purchase amount
statusVARCHAR(20)Purchase processing status
Tablesuserspurchases
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results