Multiple Choice
Based on the code shown, which query lists the number, name, street, and credit limit of all customers? The records are ordered by customer name within descending credit limit.??Customer ( CustomerNum, CustomerName, Street, City, State, PostalCode, Balance, CreditLimit, RepNum )
A) SELECT CustomerNum, CustomerName, Street, CreditLimit FROM Customer SORT BY CreditLimit DESC, CustomerName ;
B) SELECT CustomerNum, CustomerName, Street, CreditLimit FROM Customer SORT BY CreditLimit ASC, CustomerName ;
C) SELECT CustomerNum, CustomerName, Street, CreditLimit FROM Customer ORDER BY CreditLimit DESC, CustomerName ;
D) SELECT CustomerNum, CustomerName, Street, CreditLimit FROM Customer ORDER BY CreditLimit ASC, CustomerName ;
Correct Answer:

Verified
Correct Answer:
Verified
Q25: Based on the code shown, which query
Q26: The BETWEEN operator is exclusive; it includes
Q27: Based on the code shown, which query
Q28: Words that are part of the SQL
Q29: Which query will return the number of
Q31: Based on the code shown, which query
Q32: A valid name for a table might
Q33: In Access SQL, which character is used
Q34: Based on the code shown, which query
Q35: The _ data type stores integers in