일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 입문
- eda
- TEAM EDA
- 파이썬
- Machine Learning Advanced
- 한빛미디어
- 3줄 논문
- 나는 리뷰어다
- 추천시스템
- DFS
- Segmentation
- 스택
- 엘리스
- DilatedNet
- TEAM-EDA
- 프로그래머스
- Semantic Segmentation
- Image Segmentation
- MySQL
- 튜토리얼
- Python
- Recsys-KR
- 큐
- hackerrank
- 코딩테스트
- 나는리뷰어다
- 협업필터링
- pytorch
- Object Detection
- 알고리즘
- Today
- Total
TEAM EDA
[HackerRank] Basic Aggregation : Top Earners 본문
We define an employee's total earnings to be their monthly salary x months worked, and themaximum total earningsto 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 2space-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(*)
FROM Employee
GROUP BY earnings DESC LIMIT 1
'EDA Study > SQL' 카테고리의 다른 글
[HackerRank] Basic Aggregation : Weather Observation Station (0) | 2021.02.09 |
---|---|
[HackerRank] Basic Aggregation : The Blunder (0) | 2021.02.09 |
[HackerRank] Basic Aggregation : Revising Aggregations (0) | 2021.02.09 |
[HackerRank] Basic Join : Top Competitors (0) | 2021.02.08 |
[HackerRank] Basic Join : The Report (2) | 2021.02.08 |