find above average salary earner in sql

Solutions on MaxInterview for find above average salary earner in sql by the best coders in the world

showing results for - "find above average salary earner in sql"
Andy
16 Jul 2019
1SELECT FIRST_NAME, LAST_NAME
2FROM EMPLOYEES
3WHERE SALARY > (SELECT AVG(SALARY) FROM EMPLOYEES);