Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top-N Per Department with Window Functions
00:00
5 left

Top-N Per Department with Window Functions

MediumSQL · PostgreSQL

Problem

Write a SQL query using window functions such as DENSE_RANK or ROW_NUMBER to find the top three highest-paid employees in each department at UKG.

Use the provided employee and department data. Include ties at the third salary rank and exclude employees without a matching department.

Output

  1. One row per qualifying employee with employee_id, employee_name, department_name, salary, and salary_rank.
  2. Include salary ranks 1 through 3, order by department name, salary descending, then employee ID ascending.

Schema

departments
ColumnTypeDescription
department_idPKINTUnique department identifier
department_nameVARCHAR(100)Department display name
cost_centerVARCHAR(20)Optional finance cost-center code
employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee full name
department_idINTDepartment assigned to the employee
salaryNUMERIC(12,2)Annual base salary
Tablesemployeesdepartments
Interviewer

Your question is Top-N Per Department with Window Functions. 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.