일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- sql
- 카이제곱분포
- update
- 자연어 논문
- LSTM
- CASE
- 논문리뷰
- NLP
- 코딩테스트
- inner join
- GRU
- 자연어 논문 리뷰
- 표준편차
- airflow
- 서브쿼리
- t분포
- SQL코테
- 설명의무
- Statistics
- leetcode
- torch
- MySQL
- 그룹바이
- sigmoid
- HackerRank
- nlp논문
- 자연어처리
- SQL 날짜 데이터
- 짝수
- Window Function
- Today
- Total
HAZEL
[SQL : GROUP BY/ where 서브쿼리 ] HackerRank: Top Earners 본문
Top Earners
>> 문제
We define an employee's total earnings to be their monthly salary x months worked, and the maximum total earnings to be the maximum total earnings for any employee in the Employee table. Write a query to find the maximum total earnings for all employees as well as the total number of employees who have maximum total earnings. Then print these values as space-separated integers.
Input Format
The Employee table containing employee data for a company is described as follows:
where employee_id is an employee's ID number, name is their name, months is the total number of months they've been working for the company, and salary is the their monthly salary.
Sample Input
Sample Output
69952 1
Explanation
The table and earnings data is depicted in the following diagram:
The maximum earnings value is 69952 . The only employee with earnings = 69952 is Kimberly, so we print the maximum earnings value (69952) and a count of the number of employees who have earned $ 69952 (which is 1) as two space-separated values.
>> 문제 푼 코드
SELECT SALARY * MONTHS AS EARNINGS, COUNT(NAME)
FROM EMPLOYEE
GROUP BY EARNINGS
ORDER BY EARNINGS DESC
LIMIT 1;
>> 서브쿼리로 푼 코드
-- where 서브쿼리
select months * salary as earnings , count(*)
from employee
where months * salary = ( select max(months * salary) from employee)
group by earnings
-- having절 서브쿼리
select months * salary as earnings , count(*)
from employee
group by earnings
having earnings = (select max(months * salary) from employee)
www.hackerrank.com/challenges/earnings-of-employees/problem
'DATA ANALYSIS > SQL' 카테고리의 다른 글
[SQL : HackerRank] UNION (0) | 2021.02.14 |
---|---|
[SQL : HackerRank/Leetcode] SELF JOIN (0) | 2021.02.13 |
[SQL : Leetcode] LEFT JOIN 문 (0) | 2021.02.13 |
[SQL : HackerRank/Leetcode] INNER JOIN (0) | 2021.02.12 |
[SQL : HackerRank/Leetcode] CASE 문 (0) | 2021.02.08 |