Last updated on January 22nd, 2025 at 11:22 pm
Here, we see the Managers with at Least 5 Direct Reports LeetCode Solution. This Leetcode problem is solved using MySQL and Pandas.
List of all LeetCode Solution
Level of Question
Medium

Managers with at Least 5 Direct Reports LeetCode Solution
Table of Contents
1. Problem Statement
Column Name | Type |
id | int |
name | varchar |
department | varchar |
managerId | int |
Employee
id is the primary key (column with unique values) for this table.
Each row of this table indicates the name of an employee, their department, and the id of their manager.
If managerId is null, then the employee does not have a manager.
No employee will be the manager of themself.
Write a solution to find managers with at least five direct reports.
Return the result table in any order.
The result format is in the following example.
Example 1:
Input:
id | name | department | managerId |
101 | John | A | null |
102 | Dan | A | 101 |
103 | James | A | 101 |
104 | Amy | A | 101 |
105 | Anne | A | 101 |
106 | Ron | B | 101 |
Output:
name |
John |
2. Code Implementation in Different Languages
2.1 Managers with at Least 5 Direct Reports MySQL
select Name from Employee where Id in ( select ManagerId from Employee group by ManagerId having count(*) >= 5 );