Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rank Customers With Window SQL

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

Your question is Rank Customers With Window SQL. 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

Citadel Data Platform needs a regional view of customer purchase activity for the first quarter of 2025. Write a PostgreSQL query that aggregates qualifying purchases and ranks customers within their region.

Requirements

  1. Include only active customers with a non-null region.
  2. Sum only purchases with status = 'completed' and a purchase_date from 2025-01-01 inclusive through 2025-03-31 inclusive.
  3. Include customers with no qualifying purchases, assigning them a total of zero.
  4. Use RANK() partitioned by region and order the final results by region, rank, and customer ID.

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(100)Customer display name
regionVARCHAR(50)Customer geographic region
is_activeBOOLEANWhether the customer is currently active
purchases
ColumnTypeDescription
purchase_idPKINTUnique purchase identifier
customer_idINTCustomer associated with the purchase
purchase_dateDATEDate on which the purchase was recorded
purchase_amountNUMERIC(12,2)Monetary value of the purchase
statusVARCHAR(20)Purchase processing status
Tablescustomerspurchases
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results