sql >> Base de Datos >  >> RDS >> Mysql

MySQL - Cómo seleccionar Mínimo Y Máximo en una consulta (UNION)

SELECT ename, sal
FROM EMP
WHERE sal = (SELECT MIN(sal) FROM EMP)
UNION
SELECT ename, sal
FROM EMP
WHERE sal = (SELECT MAX(sal) FROM EMP)