-
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
-
- the average salary is more than the average salary in the company
- the average salary of male employees is more than the average salary of all male employees in the company the
- average salary of male employees is more than the average salary of employees in the same department
- the average salary of male employees is more than the average salary in the company
- the average salary is more than the average salary in the company
Correct Option: D
SQL query will compute as follows
1. Selects the name from the department
2. Selects the male employee
3. Computes that the average salary of male employees is more than the average salary in the company.