Answers for "max and min salary from employee table"

SQL
0

how to find max and min salary in sql

SELECT MAX(SALARY) FROM EMPLOYEES
UNION
SELECT MIN(SALARY) FROM EMPLOYEES;
Posted by: Guest on November-27-2020

Code answers related to "max and min salary from employee table"

Code answers related to "SQL"

Browse Popular Code Answers by Language