-
Notifications
You must be signed in to change notification settings - Fork 43
/
the-number-of-employees-which-report-to-each-employee.sql
81 lines (69 loc) · 2.6 KB
/
the-number-of-employees-which-report-to-each-employee.sql
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
The Number Of Employees Which Report To Each Employee Problem
Description
LeetCode Problem 1731.
Table: Employees
+-------------+----------+
| Column Name | Type |
+-------------+----------+
| employee_id | int |
| name | varchar |
| reports_to | int |
| age | int |
+-------------+----------+
employee_id is the primary key 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).
Write an SQL query to report the ids and the names of the people that other employees reported to (excluding null values), the number of employees who report to them, and the average age of those members rounded to the nearest integer.
Return the result table ordered by employee_id.
The query result format is in the following example:
Employees table:
+-------------+---------+------------+-----+
| employee_id | name | reports_to | age |
+-------------+---------+------------+-----+
| 9 | Hercy | null | 43 |
| 6 | Alice | 9 | 41 |
| 4 | Bob | 9 | 36 |
| 2 | Winston | null | 37 |
+-------------+---------+------------+-----+
Result table:
+-------------+-------+---------------+-------------+
| employee_id | name | reports_count | average_age |
+-------------+-------+---------------+-------------+
| 9 | Hercy | 2 | 39 |
+-------------+-------+---------------+-------------+
Alice and Bob report to Hercy, hence Hercy has 2 people report to him, and the average of their age is (41+36)/2 = 38.5 which is 39 after rounding it to the nearest integer.
*/
# V0
select e1.reports_to as employee_id,
e2.name,
count(e1.reports_to) as reports_count,
round(avg(e1.age),0) as average_age
from employees e1
join employees e2
on e1.reports_to=e2.employee_id
group by e1.reports_to
order by e1.reports_to
# V1
# https://circlecoder.com/the-number-of-employees-which-report-to-each-employee/
select e1.reports_to as employee_id,
e2.name,
count(e1.reports_to) as reports_count,
round(avg(e1.age),0) as average_age
from employees e1
join employees e2
on e1.reports_to=e2.employee_id
group by e1.reports_to
order by e1.reports_to
# V2
# Time: O(nlogn)
# Space: O(n)
SELECT e1.employee_id,
e1.NAME,
Count(e2.reports_to) AS reports_count,
Round(Avg(e2.age), 0) AS average_age
FROM employees e1
INNER JOIN employees e2
ON e1.employee_id = e2.reports_to
GROUP BY e1.employee_id,
e1.NAME
ORDER BY 1 ASC;