Answers for "Retrieve total salary of employee which is greater than >120000."

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 "Retrieve total salary of employee which is greater than >120000."

Code answers related to "SQL"

Browse Popular Code Answers by Language