Answers for "mysql query second highest salary"

SQL
2

2nd highest salary in mysql

#2nd Most highest salary using Limit & Order By
SELECT Salary FROM (SELECT Salary FROM Employee ORDER BY salary DESC LIMIT 2) AS Emp ORDER BY salary LIMIT 1;
Posted by: Guest on November-06-2020
0

how to find 2nd highest salary in mysql

#2nd Most highest salary using Group By, Order By & Limit clause
SELECT sal FROM emp GROUP BY sal ORDER BY sal DESC LIMIT 1, 1;
Posted by: Guest on April-09-2021

Code answers related to "mysql query second highest salary"

Code answers related to "SQL"

Browse Popular Code Answers by Language