Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Second Highest Salary SQL

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

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

UST Global's employee directory needs a salary review report. Write a PostgreSQL query to find employees with the second-highest distinct salary among active employees and display their department when available.

Requirements

  1. Consider only employees whose employment_status is Active and whose salary is not NULL.
  2. Rank distinct salary amounts from highest to lowest, then select rank 2.
  3. Return every employee tied at the second-highest salary, including employees without a matching department.
  4. Sort the output by salary descending and employee ID ascending.

Schema

employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee's full name
department_idINTAssigned department identifier
salaryNUMERIC(12,2)Annual employee salary
employment_statusVARCHAR(20)Employee's current employment status
departments
ColumnTypeDescription
department_idPKINTUnique department identifier
department_nameVARCHAR(100)Department name
locationVARCHAR(100)Primary department location
Tablesemployeesdepartments
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results