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

Verified
Correct Answer:
Verified
Q10: In a SELECT statement, the WHERE clause
Q11: _ means creating groups of records that
Q12: In versions of SQL other than Access,
Q13: When you place one query inside another,
Q14: What command do you use to make
Q16: In an SQL query, after the word
Q17: What are some common restrictions placed on
Q18: Based on the code shown, which query
Q19: One common restriction placed on table and
Q20: There is no difference between the COUNT