Answers for "how to get the highest salary in sql and show there data"

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
0

third highest salary in sql

SELECT ename,sal from Employee e1 where 
        N-1 = (SELECT COUNT(DISTINCT sal)from Employee e2 where e2.sal > e1.sal)
Posted by: Guest on April-12-2021

Code answers related to "how to get the highest salary in sql and show there data"

Code answers related to "SQL"

Browse Popular Code Answers by Language