Answers for "how to find the max salary in sql"

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 "how to find the max salary in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language