Multiple Choice
Contents of BOOKS table
-Based upon the contents of the BOOKS table in the accompanying figure,which of the following queries will return the category and title of all books stored in the BOOKS table presented in order of their category and,for the books in the same category,sort the title of the books in descending order?
A) SELECT category,title FROM books
ORDERED BY 1,2 DESC;
B) SELECT category,title FROM books
ORDER BY 1 ASC,2 DESC;
C) SELECT category,title FROM books
SORTED BY 1 ASC,2 DESC;
D) SELECT category,title FROM books
SORT BY 1,2 DESC;
Correct Answer:

Verified
Correct Answer:
Verified
Q1: The percent sign (%)and asterisk (*)symbols can
Q2: A NULL value is the same as
Q3: Logical operators are evaluated in the order
Q5: The <u>numeric order</u> of columns in a
Q6: When two conditions are joined by the
Q7: The <>,!=,or ^= operators can be used
Q8: The order in which NULL values appear
Q9: Contents of the ORDERS table<br> <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB1929/.jpg"
Q10: A(n)_ sort can be specified in the
Q11: NOT,ALL,and OR are all considered logical operators.