혜온의 이것저것

[HackerRank] Top Earners (MySQL) 본문

Data Analysis/SQL

[HackerRank] Top Earners (MySQL)

혜온 :) 2022. 8. 15. 15:52

https://www.hackerrank.com/challenges/earnings-of-employees/problem?isFullScreen=true&h_r=next-challenge&h_v=zen&h_r=next-challenge&h_v=zen 

 

Top Earners | HackerRank

Find the maximum amount of money earned by any employee, as well as the number of top earners (people who have earned this amount).

www.hackerrank.com

 

문제

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: 

The maximum earnings value is 66952. The only employee with earnings = 66952 is Kimberly, so we print the maximum earnings value(66952) and a count of the number of employees who have earned $6952 (which is 1) as two space-separated values.

 

풀이
select max(salary*months), count(*)
from employee
where salary*months = (select max(salary*months) from employee)

 

Comments