Answers for "how to find maximum and minimum and avg salaries of department in sql"

SQL
0

min and max salary and name in sql

SELECT FIRST_NAME , SALARY
FROM EMPLOYEES
WHERE SALARY IN (SELECT MAX(SALARY)AS RESULT FROM EMPLOYEES
UNION
SELECT MIN(SALARY)AS RESULT FROM EMPLOYEES);
Posted by: Guest on November-27-2020

Code answers related to "how to find maximum and minimum and avg salaries of department in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language