+ 1
Query for displaying the details of those employees whose salary is greater than or equal to the average salary
2 ответов
+ 9
You can put a tick on Mr Programmer's answer
+ 3
SELECT * FROM EMPLOYEES WHERE SALARY > (SELECT AVG(SALARY) FROM EMPLOYEES);