Pregunta de entrevista de CitiusTech

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

Respuesta de la entrevista

Anónimo

4 abr 2022

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