Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Consider the SQL query below that operates on the table emp containing attributes ( empld , nam gender, salary, deptld ) : select deptld, count

Consider the SQL query below that operates on the table emp containing attributes (empld, nam gender, salary, deptld):
select deptld, count(*) from emp where gender = "female"
and salary >(select avg(salary)from emp) group by deptld;
The above query returns, for each department, the number of female workers whose salary is higher than the company's average salary of:
All employees in the department
All employees in the company
All female employees in the department
All female employees in the company
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Practical Database Programming With Visual C# .NET

Authors: Ying Bai

1st Edition

0470467274, 978-0470467275

More Books

Students also viewed these Databases questions

Question

What is job rotation ?

Answered: 1 week ago