Multiple Choice
Based on the code shown, which query lists the number, name, credit limit, and balance for all customers with credit limits that exceed their balances???Customer ( CustomerNum, CustomerName, Street, City, State, PostalCode, Balance, CreditLimit, RepNum )
A) SELECT CustomerNum, CustomerName FROM Customer WHERE CreditLimit>Balance ;
B) SELECT CustomerNum, CustomerName, CreditLimit, Balance FROM Customer WHERE CreditLimit>Balance ;
C) SELECT CustomerNum, CustomerName, Balance FROM Customer WHERE CreditLimit>Balance ;
D) SELECT CustomerNum, CustomerName, CreditLimit, Balance FROM Customer ;
Correct Answer:

Verified
Correct Answer:
Verified
Q6: SQL uses an on-screen form to create
Q29: Which query will return the number of
Q30: Based on the code shown, which query
Q31: Based on the code shown, which query
Q32: A valid name for a table might
Q33: In Access SQL, which character is used
Q35: The _ data type stores integers in
Q37: Based on the code shown, which query
Q38: Based on the code shown, which query
Q39: Which operator do you use in the