Multiple Choice
Contents of BOOKS table
-Based upon the contents of the BOOKS table in the accompanying figure,which of the following queries will retrieve all books stored in the BOOKS table with Pubid 1 or 2 or that have a retail price of at least $42.00?
A) SELECT * FROM books
WHERE pubid = 1 OR pubid = 2 OR retail >= 42;
B) SELECT * FROM books
WHERE pubid IN (1,2) OR retail => 42;
C) SELECT * FROM books
WHERE pubid = 1 AND pubid=2 OR retail >=42;
D) both a and b
Correct Answer:

Verified
Correct Answer:
Verified
Q33: When two conditions are joined by the
Q34: To instruct Oracle12c to sort data in
Q35: The _ symbol is used for determining
Q36: What is the purpose of the WHERE
Q37: A(n)_ value is considered the same as
Q39: The _ logical operator is used to
Q40: Which of the following operators is used
Q41: The _ comparison operator is used when
Q42: Contents of the ORDERS table<br> <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB1929/.jpg"
Q43: When sorting the results in ascending order,which