Answers for "list the employye name whose salary is gretear is then the average salary of dept"

SQL
0

FIND ABOVE AVERAGE SALARY EARNER IN SQL

SELECT FIRST_NAME, LAST_NAME
FROM EMPLOYEES
WHERE SALARY > (SELECT AVG(SALARY) FROM EMPLOYEES);
Posted by: Guest on November-27-2020

Code answers related to "list the employye name whose salary is gretear is then the average salary of dept"

Code answers related to "SQL"

Browse Popular Code Answers by Language