Multiple Choice
Contents of the ORDERS table
-Based upon the contents of the ORDERS table in the accompanying figure,which of the following queries will display all orders shipped between April 4,2003 and April 5,2003?
A) SELECT * FROM orders
WHERE shipdate <= '04-APR-03' AND shipdate >= '05-APR-03';
B) SELECT * FROM orders
WHERE shipdate BETWEEN '04-APR-03' AND '05-APR-03';
C) SELECT * FROM orders
WHERE shipdate >= '04-APR-03' AND shipdate <= '05-APR-03';
D) both b and c
Correct Answer:

Verified
Correct Answer:
Verified
Q49: Retrieving only specific rows from a table
Q50: Contents of BOOKS table<br> <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB1929/.jpg" alt="Contents
Q51: When performing a search on a(n)_ column,the
Q52: The _ clause is used to restrict
Q53: Contents of BOOKS table<br> <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB1929/.jpg" alt="Contents
Q55: Contents of BOOKS table<br> <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB1929/.jpg" alt="Contents
Q56: Contents of the ORDERS table<br> <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB1929/.jpg"
Q57: The SORT BY clause is used to
Q58: Using the OR logical operator to combine
Q59: Including the keywords NULLS FIRST in the