Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Second Highest in MySQL

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

Your question is Second Highest in MySQL. 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

Capgemini Engineering is reviewing compensation across its delivery and engineering teams. Write a PostgreSQL query to identify every employee who earns the second highest distinct salary.

Requirements

  1. Rank non-null salaries from highest to lowest using a window function.
  2. Treat duplicate salaries as one salary level, so employees sharing the second highest salary must all be returned.
  3. Include the employee name, department name, and salary.
  4. Preserve employees whose department is missing by using a left join, and order the result by salary descending and employee name ascending.

Schema

employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee's full name
department_idINTRelated department identifier
salaryNUMERIC(10,2)Annual salary
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