Solved

Contents of BOOKS Table

Question 53

Multiple Choice

Contents of BOOKS table
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;
-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:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions