CitiusTech interview question

SQL command to print the second highest salary in the emp table

Interview Answer

Anonymous

4 Apr 2022

SELECT MAX (salary) from emp where sal<(SELECT MAX(salary) from emp)