Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top Customers Per Region

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

Your question is Top Customers Per Region. Start with the requirements and the three 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

Abzooba needs a regional revenue leaderboard for its customer analytics platform. Assume the reporting date is 2025-03-31, and the last 30 days means 2025-03-02 through 2025-03-31, inclusive. Write a PostgreSQL query to identify the top three customers by completed-order revenue in each region.

Requirements

  1. Join customers to regions and orders.
  2. Include only completed orders within the stated 30-day window.
  3. Calculate revenue as quantity * unit_price per customer, treating missing revenue as zero.
  4. Rank customers independently within each region and return at most three per region.
  5. Sort by region, revenue descending, and customer ID as a deterministic tie-breaker.

Schema

regions
ColumnTypeDescription
region_idPKINTUnique region identifier
region_nameVARCHAR(50)Display name of the region
customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(100)Customer full name
region_idINTRegion assigned to the customer
orders
ColumnTypeDescription
order_idPKINTUnique order identifier
customer_idINTCustomer associated with the order
order_dateDATEDate on which the order was placed
statusVARCHAR(20)Order processing status
quantityINTNumber of units ordered
unit_priceNUMERIC(10,2)Price per ordered unit
Tablesregionscustomersorders
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results