Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

K-th Highest Salary Query

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

Your question is K-th Highest Salary Query. 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

CLARA analytics needs to identify employees at a specific compensation tier for internal workforce analysis. Write a PostgreSQL query to return every employee earning the third-highest distinct salary, where k = 3.

Requirements

  1. Rank distinct non-null salaries from highest to lowest using a window function.
  2. Return all employees tied at the requested rank, not just one employee.
  3. Include the employee's department when available, preserving employees whose department reference is missing.
  4. Return results in ascending employee_id order. The query should make it clear how to replace 3 with another value of k.

Schema

employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee full name
department_idINTReferenced department identifier
salaryNUMERIC(10,2)Annual employee salary
departments
ColumnTypeDescription
department_idPKINTUnique department identifier
department_nameVARCHAR(100)Department display name
Tablesemployeesdepartments
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results