Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Second Maximum Salary Query

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

Your question is Second Maximum 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

HashedIn's engineering dashboard needs to identify active employees whose compensation is the second-highest distinct salary in the company. Write a PostgreSQL query that also displays each employee's department when available.

Requirements

  1. Consider only employees where is_active is TRUE and salary is not NULL.
  2. Use a ranking technique that treats tied salaries as one salary level.
  3. Return every employee at the second-highest distinct salary, including employees whose department reference has no match.
  4. Sort the output by employee_id ascending.

Schema

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