I need to retrieve the info of the employees that earn more money than the average wage of their department... we have departments named 10, 20, 30, 40, 50, ... and so goes on. Here I have managed to retrieve what I need for only one department. (40) How can I do it for as many departments as there may be?
This is my Query:
SELECT * FROM EMPLOYEE where (Department_ID='40')and
(
employee_salary >
(select avg(employee_salary) from EMPLOYEE where Department_ID='40')
)
Datatable:

