Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top Purchases Per Category
00:00
5 left

Top Purchases Per Category

MediumSQL · PostgreSQL

Problem

AARP Rewards wants to identify the highest-value completed purchases within each user category. Write a PostgreSQL query that joins users to transactions, filters eligible purchases, and returns the top three purchases for every category.

Requirements

  1. Include only transactions with status = 'completed' and a positive, non-null amount.
  2. Rank purchases separately within each user_category, using purchase amount descending and transaction_id ascending as the deterministic tie-breaker.
  3. Return no more than three purchases per category, including the user, category, transaction, amount, and rank.
  4. Sort the final result by category, rank, and transaction ID.

Schema

users
ColumnTypeDescription
user_idPKINTEGERUnique user identifier
user_nameVARCHAR(100)User display name
user_categoryVARCHAR(30)AARP Rewards user category
transactions
ColumnTypeDescription
transaction_idPKINTEGERUnique transaction identifier
user_idINTEGERUser who made the purchase
amountNUMERIC(10,2)Purchase amount in dollars
statusVARCHAR(20)Transaction processing status
Tablesuserstransactions
Interviewer

Your question is Top Purchases Per Category. 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.