Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Second Largest Salary

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

Your question is SQL Second Largest Salary. 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

Sopra Steria's people analytics team needs to identify employees earning the second-highest distinct salary among currently active employees. Write a PostgreSQL query that returns every employee tied at that salary, including department information when available.

Requirements

  1. Consider only active employees with a non-null salary.
  2. Determine the second-highest distinct salary, so employees tied at the highest salary do not occupy two ranking positions.
  3. Return the employee name, salary, and department name. Preserve employees whose department reference does not match a department record.
  4. Order the results by employee name ascending.

Schema

employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee's full name
salaryNUMERIC(10,2)Annual employee salary
department_idINTReference to the employee's department
is_activeBOOLEANWhether the employee is currently active
departments
ColumnTypeDescription
department_idPKINTUnique 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