Multiple Choice
Based on the code shown, which query lists the number, name, and balance of all customers with balances greater than or equal to $2,000 and less than or equal to $5,000???Customer ( CustomerNum, CustomerName, Street, City, State, PostalCode, Balance, CreditLimit, RepNum )
A) SELECT CustomerNum, CustomerName, Balance FROM Customer WHERE Balance BETWEEN 2000 AND 5000 ;
B) SELECT CustomerNum, CustomerName, Balance FROM Customer WHERE Balance > 2000 ;
C) SELECT CustomerName, Balance FROM Customer WHERE Balance BETWEEN 2000 AND 5000 ;
D) SELECT CustomerNum, CustomerName FROM Customer WHERE Balance BETWEEN 2000 AND 5000 ;
Correct Answer:

Verified
Correct Answer:
Verified
Q60: Use the _ clause to sort data.
Q61: SQL has built-in functions, which are also
Q62: Which query will return the number of
Q63: By using the word _ in a
Q64: Based on the code shown, which query
Q66: Based on the code shown, which query
Q67: Computed fields are existing fields in the
Q68: How are compound conditions formed?
Q69: When used after the word SELECT, which
Q70: Use the _ clause to indicate grouping.