[SQL] 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 2
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:
he 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
MAX(salary * months) AS earnings,
COUNT(*)
FROM Employee
GROUP BY salary * months
ORDER BY earnings DESC
LIMIT 1 ;
Author And Source
이 문제에 관하여([SQL] Top Earners), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@revudn46/Top-Earners저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)