Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL: Third Highest Salary

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

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

Brillio's compensation analytics team needs to identify employees at the third-highest distinct salary among active employees. Write a PostgreSQL query that returns every employee tied at that salary and includes the department name when available.

Requirements

  1. Consider only active employees with non-NULL salaries.
  2. Rank distinct salary levels from highest to lowest and select the third level, not merely the third row.
  3. Return all employees tied at that salary with their employee ID, name, salary, and department name. Preserve qualifying employees even when their department is missing.

Schema

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