You are viewing a single comment's thread. Return to all comments →
SELECT MAX(Salary*Months), COUNT(*) FROM employee GROUP BY Salary*Months ORDER BY max(Salary*Months)desc LIMIT 1;
Seems like cookies are disabled on this browser, please enable them to open this website
Top Earners
You are viewing a single comment's thread. Return to all comments →
SELECT MAX(Salary*Months), COUNT(*) FROM employee GROUP BY Salary*Months ORDER BY max(Salary*Months)desc LIMIT 1;