Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Advanced Salary Ranking SQL

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

Your question is Advanced Salary Ranking 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

Decision Point wants to compare compensation among currently active employees. Write a PostgreSQL query that returns every active employee who earns the second highest distinct salary, along with their department.

Requirements

  1. Consider only employees whose employment_status is Active and whose salary is not NULL.
  2. Rank distinct salaries from highest to lowest using a window function. The query should be easy to adapt from the second highest salary to the Nth highest salary.
  3. Return the employee ID, employee name, department name, and salary for all employees at the selected rank.
  4. Order the output by employee ID ascending. Explain why DENSE_RANK is preferable to ROW_NUMBER when tied salaries should share a rank.

Schema

employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee's 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 display name
Tablesemployeesdepartments
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results