Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Top 10% Purchasing Users
00:00
5 left

SQL Top 10% Purchasing Users

MediumSQL · PostgreSQL

Problem

How would you write a SQL query to identify the top 10% of purchasing users by region over the last quarter?

Use the previous completed calendar quarter relative to current_date. Include only completed purchases and users assigned to a recognized region.

Output

  1. One row per qualifying user, with region_name, user_id, total_spend, region_user_count, and user_rank
  2. Include the top 10% of purchasing users in each region, retaining at least one user per region
  3. Order by region_name, then user_rank, then user_id

Schema

users
ColumnTypeDescription
user_idPKINTUnique purchasing user identifier
user_nameVARCHAR(100)User display name
region_idINTAssigned region identifier
regions
ColumnTypeDescription
region_idPKINTUnique region identifier
region_nameVARCHAR(100)Region name
purchases
ColumnTypeDescription
purchase_idPKINTUnique purchase identifier
user_idINTUser who made the purchase
purchased_atTIMESTAMPPurchase timestamp
amountNUMERIC(12,2)Purchase amount
statusVARCHAR(20)Purchase processing status
Tablesusersregionspurchases
Interviewer

Your question is SQL Top 10% Purchasing Users. Start with the requirements and the three 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.