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

Verified
Correct Answer:
Verified
Q19: What SQL command do you use to
Q20: List five Access data types and their
Q21: Which SQL keyword can you use to
Q22: Explain the requirements of two sets of
Q23: In an Access query, a "group" of
Q25: Based on the SQL shown, which query
Q26: Which query will return the number of
Q27: When you create a query using SQL
Q28: Which part of a SQL query specifies
Q29: In what type of SQL operation must