Open In App

ISRO | ISRO CS 2015 | Question 23

Consider the following schema:

Emp (Empcode, Name, Sex, Salary, Deptt)

A simple SQL query is executed as follows:

SELECT Deptt FROM Emp
WHERE sex = 'M'
GROUP by Dept
Having avg (Salary) > {select avg (Salary) from Emp}

The output will be
(A) Average salary of male employee is the average salary of the organization
(B) Average salary of male employee is less than the average salary of the organization
(C) Average salary of male employee is equal to the average salary of the organization
(D) Average salary of male employee is more than the average salary of the organization

Answer: (D)
Explanation:
Quiz of this Question
Please comment below if you find anything wrong in the above post

Article Tags :