Question: 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 Based on the above table, identify the customer Name State who has a balance at least hi the average balance in their own state.
SELECT Name, State FROM tblCustomer Cust WHERE balance
SELECT AVGBalance FROM tblCustomer
WHERE State Cust.State GROUP BY State;
SELECT Name, State FROM tblCustomer C
WHERE balance
SELECT AVGBalance FROM Cust
WHERE State Cust.State GROUP BY State;
SELECT Name, State FROM tblCustomer WHERE balance
SELECT AVGBalance FROM
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
