-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1731-TheNumberOfEmployeesWhichReportToEachEmployee.sql
More file actions
59 lines (55 loc) · 2.59 KB
/
1731-TheNumberOfEmployeesWhichReportToEachEmployee.sql
File metadata and controls
59 lines (55 loc) · 2.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
-- 1731. The Number of Employees Which Report to Each Employee
-- Table: Employees
-- +-------------+----------+
-- | Column Name | Type |
-- +-------------+----------+
-- | employee_id | int |
-- | name | varchar |
-- | reports_to | int |
-- | age | int |
-- +-------------+----------+
-- employee_id is the column with unique values for this table.
-- This table contains information about the employees and the id of the manager they report to. Some employees do not report to anyone (reports_to is null).
-- For this problem, we will consider a manager an employee who has at least 1 other employee reporting to them.
-- Write a solution to report the ids and the names of all managers, the number of employees who report directly to them, and the average age of the reports rounded to the nearest integer.
-- Return the result table ordered by employee_id.
-- The result format is in the following example.
-- Example 1:
-- Input:
-- Employees table:
-- +-------------+---------+------------+-----+
-- | employee_id | name | reports_to | age |
-- +-------------+---------+------------+-----+
-- | 9 | Hercy | null | 43 |
-- | 6 | Alice | 9 | 41 |
-- | 4 | Bob | 9 | 36 |
-- | 2 | Winston | null | 37 |
-- +-------------+---------+------------+-----+
-- Output:
-- +-------------+-------+---------------+-------------+
-- | employee_id | name | reports_count | average_age |
-- +-------------+-------+---------------+-------------+
-- | 9 | Hercy | 2 | 39 |
-- +-------------+-------+---------------+-------------+
-- Explanation: Hercy has 2 people report directly to him, Alice and Bob. Their average age is (41+36)/2 = 38.5, which is 39 after rounding it to the nearest integer.
-- Create table If Not Exists Employees(employee_id int, name varchar(20), reports_to int, age int)
-- Truncate table Employees
-- insert into Employees (employee_id, name, reports_to, age) values ('9', 'Hercy', 'None', '43')
-- insert into Employees (employee_id, name, reports_to, age) values ('6', 'Alice', '9', '41')
-- insert into Employees (employee_id, name, reports_to, age) values ('4', 'Bob', '9', '36')
-- insert into Employees (employee_id, name, reports_to, age) values ('2', 'Winston', 'None', '37')
-- Write your MySQL query statement below
SELECT
a.employee_id,
a.name,
count(b.employee_id) AS reports_count,
ROUND(AVG(b.age),0) AS average_age
FROM
Employees a,
Employees b
WHERE
a.employee_id = b.reports_to
GROUP By
a.employee_id
ORDER BY
a.employee_id