Multiple Choice
Based on the code above,list the number,name,credit limit,and balance for all customers with credit limits that exceed their balances.
A) SELECT CustomerNum,CustomerName,CreditLimit,Balance FROM Customer ;
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 FROM Customer WHERE CreditLimit>Balance ;
Correct Answer:

Verified
Correct Answer:
Verified
Q6: SQL has built-in functions,which are also called
Q7: SQL was developed under the name _
Q17: The HAVING clause is to groups what
Q25: The basic form of an SQL retrieval
Q38: Fields will appear in the query results
Q64: To use a wildcard,include the _ operator
Q67: As you are working in MySQL,the most
Q70: The _ data type stores integers,but uses
Q72: In SQL,you use the SORT BY clause
Q73: Based on the code above,list the number,name,and