...
Question 14295 – Database-Management-System
December 19, 2023
Question 9186 – Data-Structures
December 20, 2023
Question 14295 – Database-Management-System
December 19, 2023
Question 9186 – Data-Structures
December 20, 2023

Question 14308 – Database-Management-System

The relation scheme given below is used to store information about the employees of a company, where empId is the key and deptId indicates the department to which the employee is assigned. Each employee is assigned to exactly one department.

              emp(empId, name, gender, salary, deptId)

Consider the following SQL query:

              select deptId, count (*)

              from emp

              where gender = “female” and salary > (select avg(salary) from emp)

              group by deptId;

The above query gives, for each department in the company, the number of female employees whose salary is greater than the average salary of

Correct Answer: C

Question 4 Explanation: 

The given SQL query is:

Select deptId, count(*)

from emp

where gender = “female” and 

group by deptId

  • The inner query will return the average salary of the emp table.
  • Hence, the given query will return the deptId wise count of female employees whose salary is greater than the average salary of the emp table.
A
employees in the department
B
female employees in the company
C
employees in the company
D
female employees in the department
0 0 votes
Article Rating
Subscribe
Notify of
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x
error: Alert: Content selection is disabled!!