SQL & DB/HackerRank SQL Problem

[HackerRank SQL] New Companies (MySQL)

YSY^ 2021. 2. 27. 18:21

www.hackerrank.com/challenges/the-company/problem

 

New Companies | HackerRank

Find total number of employees.

www.hackerrank.com

Amber's conglomerate corporation just acquired some new companies. Each of the companies follows this hierarchy: 

[HackerRank SQL] New Companies (MySQL) 0

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. 

    [HackerRank SQL] New Companies (MySQL) 1
  • Lead_Manager: The lead_manager_code is the code of the lead manager, and the company_code is the code of the working company. 

    [HackerRank SQL] New Companies (MySQL) 2
  • 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. 

    [HackerRank SQL] New Companies (MySQL) 3
  • 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. 

    [HackerRank SQL] New Companies (MySQL) 4
  • 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. 

    [HackerRank SQL] New Companies (MySQL) 5

Sample Input

Company Table: 

[HackerRank SQL] New Companies (MySQL) 6

 Lead_Manager Table: 

[HackerRank SQL] New Companies (MySQL) 7

 Senior_Manager Table: 

[HackerRank SQL] New Companies (MySQL) 8

 Manager Table: 

[HackerRank SQL] New Companies (MySQL) 9

 Employee Table: 

[HackerRank SQL] New Companies (MySQL) 10

Sample Output

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.


Answer

select c.company_code, c.founder, l.con, s.con, m.con, e.con
from Company as c
    left join 
    (select company_code, count(distinct lead_manager_code) as con from Lead_Manager group by company_code) as l
    on c.company_code = l.company_code
    left join
    (select company_code, count(distinct senior_manager_code) as con from Senior_Manager group by company_code) as s
    on l.company_code = s.company_code
    left join
    (select company_code, count(distinct manager_code) as con from Manager group by company_code) as m
    on s.company_code = m.company_code
    left join
    (select company_code, count(distinct employee_code) as con from Employee group by company_code) as e
    on m.company_code = e.company_code
order by c.company_code

각각의 테이블을 상위 테이블에 맞게 group by 하면서 join하면 된다.

Result

[HackerRank SQL] New Companies (MySQL) 11

 

728x90
반응형

'SQL & DB > HackerRank SQL Problem' 카테고리의 다른 글

[HackerRank SQL] Top Earners  (0) 2021.02.27
[HackerRank SQL] The Blunder  (0) 2021.02.27
[HackerRank SQL] Binary Tree Nodes  (0) 2021.02.27
[HackerRank SQL] Occupations  (0) 2021.02.27
[HackerRank SQL] The PADS (MySQL)  (0) 2021.02.27