Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Nth Highest Per Group

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

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

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