Answers for "3rd highest salary sql"

SQL
7

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

sql 2nd highest salary

select *from employee 
group by salary 
order by  salary desc limit 1,1;
Posted by: Guest on September-06-2021

Code answers related to "3rd highest salary sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language