Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top Spenders Per Client
00:00
5 left

Top Spenders Per Client

MediumSQL · PostgreSQL

Problem

How would you write a query to find the top 3 highest-spending members within each client account using window functions?

Use the provided client account, member, and transaction data. Calculate each member's total transaction amount and use member_id as the deterministic tie-breaker.

Output

  1. One row per qualifying member, with client_account_id, account_name, member_id, member_name, total_spent, and spending_rank
  2. Include only the top three members within each account
  3. Order by client_account_id, then spending_rank

Schema

client_accounts
ColumnTypeDescription
client_account_idPKINTUnique client account identifier
account_nameVARCHAR(100)Client account name
members
ColumnTypeDescription
member_idPKINTUnique member identifier
client_account_idINTClient account associated with the member
member_nameVARCHAR(100)Member's name
member_transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
member_idINTMember associated with the transaction
amountNUMERIC(12,2)Transaction amount
transaction_dateDATEDate of the transaction
Tablesclient_accountsmembersmember_transactions
Interviewer

Your question is Top Spenders Per Client. 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.