Domanda di colloquio di CitiusTech

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

Risposta di colloquio

Anonimo

4 apr 2022

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