The employee information in a company is stored in the relation Employee (name, sex, salary, deptName) Consider the following SQL query select deptname from Employee where sex='M' group by deptName having avg (salary)> (select avg(salary)from Employee) It returns the names of the department in which
Reveal answer
Fill a bubble to check yourself