Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Rank Top 3 Users Per Region
00:00
5 left

Rank Top 3 Users Per Region

EasySQL · PostgreSQL

Problem

Chevron's analytics team wants to identify the highest-revenue users in each operating region. Write a PostgreSQL query that aggregates transaction revenue by user, ranks users within their region, and returns the top three users per region.

Requirements

  1. Include users with no transactions and treat their revenue as zero.
  2. Aggregate all transaction rows for each user before ranking.
  3. Use a window function to rank users independently within each region.
  4. Return the top three users per region, breaking revenue ties by ascending user_id.

Schema

users
ColumnTypeDescription
user_idPKINTEGERUnique user identifier
full_nameVARCHAR(100)User's full name
region_nameVARCHAR(50)Chevron operating region
transactions
ColumnTypeDescription
transaction_idPKINTEGERUnique transaction identifier
user_idINTEGERUser associated with the transaction
revenueNUMERIC(12,2)Revenue attributed to the transaction
transaction_dateDATETransaction date
Tablesuserstransactions
Interviewer

Your question is Rank Top 3 Users Per Region. Start with the requirements and the two tables 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.