Answers for "find the employee whose salary is greater than average salary using having"

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 "find the employee whose salary is greater than average salary using having"

Code answers related to "SQL"

Browse Popular Code Answers by Language