Answers for "write an sql query to obtain the 2nd highest salary."

SQL
0

2nd max salary query in sql

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

Code answers related to "write an sql query to obtain the 2nd highest salary."

Code answers related to "SQL"

Browse Popular Code Answers by Language