[hackerrank] Prepare > SQL > Aggregation > Top Earners
[문제]
We define an employee's total earnings to be their monthly 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 . The only employee with earnings is Kimberly, so we print the maximum earnings value () and a count of the number of employees who have earned (which is ) as two space-separated values.
[MYSQL]
[ORCALE]
select earnings,cnt
from (
select ( months * salary ) earnings , count( months * salary ) cnt
from employee
group by months * salary
order by months * salary desc
)
where rownum = 1;
처음에는 max 함수 썼는데 .. 계속 오류가 나서.. 정렬해서 맨위에꺼 가져옴..
갈길이 멀다
'HackerRank > SQL' 카테고리의 다른 글
[hackerrank] Weather Observation Station 13 (0) | 2022.08.31 |
---|---|
[hackerrank] Weather Observation Station 2 (0) | 2022.08.31 |
[hackerrank] The Blunder (0) | 2022.08.25 |
[hackerrank] Population Density Difference (0) | 2022.08.24 |
[hackerrank] Japan Population (0) | 2022.08.24 |