Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Important fields that will be needed ( to save space I used abbreviations that should NOT be used in actual programming ) : tblCustomer: CustomerNumber

Important fields that will be needed (to save space I used "abbreviations" that should NOT be used in actual programming):
tblCustomer:
CustomerNumber [I put it as "CustNum" -
JUST for this exam]
SalesRepNumber [I put it as "RepNum" - JUST
for this exam]
tbISIsrep:
SalesRepNumber [I put it as "RepNum" - JUS ] for this exam]
CommissionRate [I put it as "ComRate" - JUS for this examl
SQL-8. Based on the above table, identify the customer (Name, State) who has a balance at least 10% hi the average balance in their own state.
SELECT Name, State FROM tblCustomer Cust WHERE balance 1.1*
(SELECT AVG(Balance) FROM tblCustomer
WHERE State = Cust.State GROUP BY State);
SELECT Name, State FROM tblCustomer C
WHERE balance 1.1**
(SELECT AVG(Balance) FROM Cust
WHERE State = Cust.State GROUP BY State);
SELECT Name, State FROM tblCustomer WHERE balance 1.1**
(SELECT AVG(Balance) FROM
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

Relational Database Design A Practical Approach

Authors: Marilyn Campbell

1st Edition

1587193175, 978-1587193170

More Books

Students also viewed these Databases questions