Answers for "how to select 3rd highest salary in mysql"

SQL
0

2nd highest salary in mysql

#Corelated Subquery
SELECT Id, Salary
FROM Employee e
WHERE 2=(SELECT COUNT(DISTINCT Salary) FROM Employee p
WHERE e.Salary<=p.Salary)
Posted by: Guest on November-06-2020

Code answers related to "how to select 3rd highest salary in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language