Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top Purchases Per Category

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

Your question is Top Purchases Per Category. Start with the requirements and the two 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

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
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results