Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Top 5% by Tier

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

Your question is SQL Top 5% by Tier. 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

Navy Federal Credit Union wants to identify the highest-volume members within each card tier. Write a PostgreSQL query that aggregates completed card transactions and uses window functions to return the top 5% of members in every tier.

Requirements

  1. Join members to card transactions while retaining members with no completed transactions.
  2. Calculate each member's completed transaction volume, treating missing or NULL amounts as zero.
  3. Rank members within each card_tier by volume descending, using member_id as a deterministic tie-breaker.
  4. Return at least one member per tier, even when 5% of a tier contains fewer than one member.

Schema

members
ColumnTypeDescription
member_idPKINTNavy Federal member identifier
member_nameVARCHAR(100)Member's full name
card_tierVARCHAR(20)Member's Navy Federal card tier
card_transactions
ColumnTypeDescription
transaction_idPKINTUnique card transaction identifier
member_idINTReferences members.member_id
transaction_amountDECIMAL(12,2)Amount of the card transaction
transaction_statusVARCHAR(20)Transaction status, such as COMPLETED or PENDING
Tablesmemberscard_transactions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results