Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Third-Highest Salary Department-Wise

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

Your question is Third-Highest Salary Department-Wise. 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

Context

Straive uses department-level compensation reports to review salary distribution across teams supporting its content and data platforms. The report must identify employees whose salary is the third-highest distinct salary within their department.

Task

Write a PostgreSQL query that returns every employee tied at the third-highest distinct salary in departments with at least three distinct salary levels.

Requirements

  1. Join employees to departments using department_id.
  2. Rank distinct salary values independently within each department, with the highest salary ranked first.
  3. Return the department name, employee ID, employee name, salary, and salary rank for rank 3.
  4. Include ties and order the output by department name and employee ID.

Schema

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