Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Employees Earning More Than Managers

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

Your question is Employees Earning More Than Managers. Start with the requirements and the one table 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

Arcesium's workforce reporting team needs to identify employees whose compensation exceeds that of their direct manager. Write a PostgreSQL query using a self-join on the employees table.

Requirements

  1. Return the employee's name and salary, along with the direct manager's name and salary.
  2. Include only employees whose salary is strictly greater than their manager's salary.
  3. Exclude employees without a manager, employees with equal salaries, and rows where either salary is NULL.
  4. Order the results by employee name in ascending order.

Schema

employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee's full name
manager_idINTReferences the direct manager's employee_id
salaryNUMERIC(12,2)Annual employee salary
Tablesemployees
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results