Multiple Choice
Based on the code above,list the number,name,and balance of all customers with balances greater than or equal to $1,000 and less than or equal to $5,000.
A) SELECT CustomerNum,CustomerName,Balance FROM Customer WHERE Balance BETWEEN 1000 AND 5000 ;
B) SELECT CustomerNum,CustomerName,Balance FROM Customer WHERE Balance > 1000 ;
C) SELECT CustomerName,Balance FROM Customer WHERE Balance BETWEEN 1000 AND 5000 ;
D) SELECT CustomerNum,CustomerName FROM Customer WHERE Balance BETWEEN 1000 AND 5000 ;
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
Q69: Based on the code above,list the number,name,credit
Q70: The _ data type stores integers,but uses
Q72: In SQL,you use the SORT BY clause