Answers for "top 2nd salary in sql"

SQL
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 "top 2nd salary in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language