https://www.hackerrank.com/challenges/earnings-of-employees/problem?h_r=internal-search 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 가장 높은 연봉과 가장 높은 연봉을 받는 사람 수를 출력하는 문제 SELECT MAX(salary * months), COUNT(*) FROM employee WHERE salary * months = (SELECT MAX(salary * ..