Answers for "2nd highest salary in sql into two table"

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 "2nd highest salary in sql into two table"

Code answers related to "SQL"

Browse Popular Code Answers by Language