Notifications
Clear all
1
14/12/2019 11:50 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 12:02 pm
In SQL Server you can do this using the TOP keyword.
For example:
Select TOP 25 * from employee order by salary desc;
The above query will return the TOP 25 highest paid employee details.