Top Earners

  • + 0 comments

    SELECT MAX(salary * months) as earnings, COUNT(employee_id)
    FROM Employee WHERE salary * months = (SELECT MAX(salary * months) FROM Employee);