Multiple Choice
Contents of BOOKS table
-Based upon the contents of the BOOKS table in the accompanying figure,which of the following queries will list the title and retail price of each book stored in the BOOKS table,sorted in order of the book titles?
A) SELECT title,retail FROM books
ORDERED BY title;
B) SELECT title,retail FROM books
SORTED BY title;
C) SELECT title,retail FROM books
ORDER BY title;
D) SELECT title,retail FROM books
SORT BY title;
Correct Answer:
Verified
Related Questions
Q90: In regards to sorting,if a DISTINCT option
Q91: Contents of BOOKS table Q92: Contents of the ORDERS table Q93: Contents of BOOKS table Q94: If there is an exact match between Q96: Contents of the ORDERS table