Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Nth Highest Per Group
00:00
5 left

SQL Nth Highest Per Group

MediumSQL · PostgreSQL

Problem

TIAA's workforce analytics team needs to compare compensation levels across departments. Write a PostgreSQL query that returns every employee earning the second-highest distinct salary in their department.

Use N = 2 for this exercise. Treat equal salaries as the same rank, so employees tied at the second salary level must all be returned. Departments without a second salary level should not appear.

Requirements

  1. Join employees to departments using department_id.
  2. Rank non-null salaries within each department using a window function, with the highest distinct salary ranked first.
  3. Return the employee name, department name, salary, and salary rank for rank 2, ordered by department name and employee name.

Schema

departments
ColumnTypeDescription
department_idPKINTEGERUnique department identifier
department_nameVARCHAR(100)TIAA department name
employees
ColumnTypeDescription
employee_idPKINTEGERUnique employee identifier
employee_nameVARCHAR(100)Employee full name
department_idINTEGERAssigned department identifier
salaryNUMERIC(12,2)Annual employee salary
Tablesemployeesdepartments
Interviewer

Your question is SQL Nth Highest Per Group. 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.