티스토리 뷰
New Companies
Amber's conglomerate corporation just acquired some new companies. Each of the companies follows this
hierarchy:
Given the table schemas below, write a query to print the company_code, founder name, total number of lead managers, total number of senior managers, total number of managers, and total number of employees. Order your output by ascending company_code.
Note:
- The tables may contain duplicate records.
- The company_code is string, so the sorting should not be numeric. For example, if the company_codes are C_1, C_2, and C_10, then the ascending company_codes will be C_1, C_10, and C_2.
Input Format
The following tables contain company data:
- Company: The company_code is the code of the company and founder is the founder of the company.
- Lead_Manager: The lead_manager_code is the code of the lead manager, and the company_code is the code of the working company.
- Senior_Manager: The senior_manager_code is the code of the senior manager, the lead_manager_code is the code of its lead manager, and the company_code is the code of the working company.
- Manager: The manager_code is the code of the manager, the senior_manager_code is the code of its senior manager, the lead_manager_code is the code of its lead manager, and the company_code is the code of the working company.
- Employee: The employee_code is the code of the employee, the manager_code is the code of its manager, the senior_manager_code is the code of its senior manager, the lead_manager_code is the code of its lead manager, and the company_code is the code of the working company.
- Sample Input
C1 Monika 1 2 1 2
C2 Samantha 1 1 2 2
- Explanation
In company C1, the only lead manager is LM1. There are two senior managers, SM1 and SM2, under LM1. There is one manager, M1, under senior manager SM1. There are two employees, E1 and E2, under manager M1.
In company C2, the only lead manager is LM2. There is one senior manager, SM3, under LM2. There are two managers, M2 and M3, under senior manager SM3. There is one employee, E3, under manager M2, and another employee, E4, under manager, M3.
SELECT A.company_code
, A.founder
, COUNT(DISTINCT(B.lead_manager_code))
, COUNT(DISTINCT(C.senior_manager_code))
, COUNT(DISTINCT(D.manager_code))
, COUNT(DISTINCT(E.employee_code))
FROM Company AS A
JOIN Lead_Manager AS B
ON A.company_code = B.company_code
JOIN Senior_Manager AS C
ON B.lead_manager_code = C.lead_manager_code
JOIN Manager D
ON C.senior_manager_code = D.senior_manager_code
JOIN Employee E
ON D.manager_code = E.manager_code
GROUP BY A.company_code, A.founder
ORDER BY A.company_code
'Programming > MySQL' 카테고리의 다른 글
[MySQL/Hackerrank] Weather Observation Station 2~20 (0) | 2021.11.03 |
---|---|
[MySQL/Hackerrank] Revising Aggregations (0) | 2021.11.03 |
[MySQL/Hackerrank] Binary Tree Nodes (0) | 2021.11.02 |
[MySQL/Hackerrank] Occupations (0) | 2021.11.02 |
[MySQL/Hackerrank] The PADS (0) | 2021.11.02 |
- Total
- Today
- Yesterday
- insert
- 넷플릭스
- 몰누피라비르
- mysql
- MS SQL Server
- 경구치료제
- tensorflow
- 매매일지
- 리비안
- 대원화성
- python3
- 코로나19
- 에코캡
- hackerrank
- HK이노엔
- 해커랭크
- python
- TSQL
- MSSQL
- list
- DATABASE
- SQL Server
- 넥스트BT
- 미중무역전쟁
- 동국알앤에스
- 테슬라
- Weather Observation Station
- 분석탭
- string
- Tableau
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |