Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Employees Reporting to One Manager

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

Your question is Employees Reporting to One Manager. 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

Business Context

Health Catalyst uses employee reporting data to support organizational views in its Data Operating System. An engineering lead needs a list of everyone who reports directly to one manager.

Task

Write a PostgreSQL query that returns all direct reports for the manager whose employee_id is supplied as parameter \$1. Do not include the manager in the result.

Requirements

  1. Use a self-join on employees to match each employee to the requested manager.
  2. Return the employee ID, name, job title, department name, and manager name.
  3. Use a LEFT JOIN for department names so an employee with no department still appears.
  4. Sort results alphabetically by employee name, then by employee ID.

Schema

employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee full name
job_titleVARCHAR(100)Employee job title
manager_idINTDirect manager employee ID
department_idINTEmployee department identifier
departments
ColumnTypeDescription
department_idPKINTUnique department identifier
department_nameVARCHAR(100)Department name
Tablesemployeesdepartments
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results