Multiple Choice
Based on the code above,list the number,name,street,and credit limit of all customers.Order the customers by name within descending credit limit.
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
Q10: In a SELECT statement, the WHERE clause
Q21: You can use the SQL CREATE TABLE
Q27: Based on the code above,list the descriptions
Q28: You can save the results of a
Q29: In Access SQL,the _ is used as
Q30: The IN operator provides a concise way
Q32: Describe how to construct a detailed query
Q34: Based on the code above,delete any row
Q35: SQL uses commands to create tables,update tables,and
Q74: Use the _ data type for fields