Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Maximum Salary Query

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

Your question is SQL Maximum Salary Query. 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

Xebia's People Analytics team needs to identify the employees receiving the highest salary. Write a PostgreSQL query that returns every employee whose salary equals the maximum salary recorded in the employee table, along with the department information available in the department table.

Requirements

  1. Return the employee name, department name, and salary for every employee tied for the maximum salary.
  2. Use a subquery or equivalent aggregation to determine the maximum salary, rather than hardcoding a value.
  3. Preserve employees even when their department is missing, displaying a NULL department name in that case.
  4. Sort the results alphabetically by employee name.

Schema

employees
ColumnTypeDescription
employee_idPKINTEGERUnique employee identifier
employee_nameVARCHAR(100)Employee's full name
department_idINTEGERIdentifier of the employee's department
salaryNUMERIC(12,2)Annual employee salary
departments
ColumnTypeDescription
department_idPKINTEGERUnique department identifier
department_nameVARCHAR(100)Department display name
Tablesemployeesdepartments
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results