Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Rank Top 3 Per Department
00:00
5 left

Rank Top 3 Per Department

MediumSQL · PostgreSQL

Problem

Write a SQL query using window functions to rank transactions within each department by amount and return the top 3 per department.

Ties should receive the same rank, so a department may return more than three rows. Exclude transactions that do not belong to a defined department.

Output

  1. One row per qualifying transaction, with transaction_id, department_name, amount, and amount_rank.
  2. Include rows with an amount rank of 3 or better, ordered by department, rank, amount descending, and transaction ID.

Schema

departments
ColumnTypeDescription
department_idPKINTUnique department identifier
department_nameVARCHAR(100)Department name
transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
department_idINTDepartment associated with the transaction
amountNUMERIC(12,2)Transaction amount
Tablestransactionsdepartments
Interviewer

Your question is Rank Top 3 Per Department. 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.