Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Nth Highest Salary Query

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

Your question is Nth 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

Freecharge’s people analytics team needs to identify employees at a selected salary tier. Write a PostgreSQL query to return every active employee earning the third-highest distinct salary.

Requirements

  1. Consider only employees whose employment_status is ACTIVE and whose salary is not NULL.
  2. Use DENSE_RANK() so employees with the same salary share a rank, and return rank 3.
  3. Include the employee name, salary, salary rank, and department name. Preserve employees whose department is missing or unmatched by using a LEFT JOIN.
  4. Order the result by salary descending and employee ID ascending.

Schema

employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee full name
department_idINTReferenced department identifier
salaryNUMERIC(12,2)Annual employee salary
employment_statusVARCHAR(20)Current employment status
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