Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Second Highest in MySQL
00:00
5 left

Second Highest in MySQL

MediumSQL · PostgreSQL

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
Interviewer

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