Question d’entretien chez CitiusTech

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

Réponse à la question d'entretien

Utilisateur anonyme

4 avr. 2022

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