Notifications
Clear all
1
14/12/2019 11:45 am
I have an employee table and I want to select the top 25 highest paid employees. How can I do that?
1 Answer
1
14/12/2019 11:57 am
In MySQL we can accomplish this using the LIMIT key word in the query
for example:
Select * From employee order by salary desc LIMIT 25; --> This will return the top 25 highest paid employee details.