Answers for "Write a Query to return Top 5th Record of an Employee based on Salary given all required Columns are present in same Table"

SQL
5

n highest salary in sql

SELECT TOP 1 salary
FROM (
SELECT DISTINCT TOP N salary
FROM #Employee
ORDER BY salary DESC
) AS temp
ORDER BY salary
Posted by: Guest on February-08-2020

Code answers related to "Write a Query to return Top 5th Record of an Employee based on Salary given all required Columns are present in same Table"

Code answers related to "SQL"

Browse Popular Code Answers by Language