Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Max Salary Department Query
00:00
5 left

Max Salary Department Query

MediumSQL · PostgreSQL

Problem

Wipro's workforce planning team needs to identify the department or departments containing the highest-paid employees. Write a PostgreSQL query that returns every department tied for the highest maximum employee salary.

Requirements

  1. Join departments with employees, preserving departments even when they have no employees.
  2. Calculate the maximum non-NULL salary for each department.
  3. Return all departments tied for the overall highest departmental maximum salary.
  4. Sort the result by department name.

Schema

departments
ColumnTypeDescription
department_idPKINTEGERUnique department identifier
department_nameVARCHAR(80)Department name
employees
ColumnTypeDescription
employee_idPKINTEGERUnique employee identifier
employee_nameVARCHAR(100)Employee name
department_idINTEGERDepartment assigned to the employee
salaryNUMERIC(12,2)Annual employee salary
Tablesdepartmentsemployees
Interviewer

Your question is Max Salary Department Query. 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.