Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Third Highest Salary in SQL

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

Your question is Third Highest Salary in SQL. 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

NCR Voyix wants to review compensation levels across teams supporting its retail products. Write a PostgreSQL query to identify employees earning the third-highest distinct salary among active employees in departments belonging to NCR Voyix Retail Solutions.

Requirements

  1. Join employees to departments using department_id.
  2. Consider only active employees in the NCR Voyix Retail Solutions product area with non-null salaries.
  3. Rank distinct salary values from highest to lowest and return every employee earning the third-highest salary.
  4. Return the employee name, salary, and salary rank, ordered by employee name.

Use a window function such as DENSE_RANK, so employees with equal salaries share the same rank and do not create gaps in the distinct salary ranking.

Schema

employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee full name
department_idINTReferences departments.department_id
salaryNUMERIC(12,2)Annual employee salary
employment_statusVARCHAR(20)Current employment status
departments
ColumnTypeDescription
department_idPKINTUnique department identifier
department_nameVARCHAR(100)Department name
product_areaVARCHAR(100)NCR Voyix product or business area
Tablesemployeesdepartments
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results