Multiple Choice
Based on the code above,list the number,name,and available credit for all customers with credit limits that exceed their balances.
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
Q1: Instead of listing all the field names
Q53: There are two versions of the "not
Q54: Based on the code above,find the name
Q55: A simple condition includes the field name,a
Q58: In Access,you use the _ operator to
Q59: When rows are grouped, one line of
Q59: Based on the code above,list the name
Q60: The two tables involved in a union
Q61: You can combine values in character fields.
Q62: In SQL,you sort data using the _