Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Second Maximum Salary Query
00:00
5 left

Second Maximum Salary Query

EasySQL · PostgreSQL

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
Interviewer

Your question is Second Maximum Salary Query. Start with the requirements and the two tables in the Question tab.

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.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.