Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Highest Salary Per Department
00:00
5 left

SQL Highest Salary Per Department

MediumSQL · PostgreSQL

Problem

Turing's engineering operations team needs a department-level view of the highest employee compensation. Write a PostgreSQL query that reports the employees earning the maximum salary in each department.

Requirements

  1. Include every department, including departments with no employees.
  2. Return the department name, employee name, and highest salary.
  3. Include every employee tied for the highest salary in a department.
  4. Sort by department name, then employee name, with departments without employees listed first within their department.

A NULL salary should not be treated as a department's maximum salary. Departments with no qualifying employee should still appear with NULL employee and salary values.

Schema

departments
ColumnTypeDescription
department_idPKINTPrimary key for the department
department_nameVARCHAR(100)Department name
employees
ColumnTypeDescription
employee_idPKINTPrimary key for the employee
employee_nameVARCHAR(100)Employee's full name
department_idINTReferenced department, when assigned
salaryNUMERIC(12,2)Annual salary
Tablesdepartmentsemployees
Interviewer

Your question is SQL Highest Salary Per Department. 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.