

MCQOPTIONS
Saved Bookmarks
1. |
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 avtg (salary) from Employee) It returns the name of the department in which |
A. | the average salary is more than the average salary in the company |
B. | the average salary of male employees is more than the average salary of all male employees in the company the |
C. | average salary of male employees is more than the average salary of employees in the same department |
D. | the average salary of male employees is more than the average salary in the company |
Answer» E. | |