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 book titles that are in the Business or Computer category and have a retail price of more than $35.00?
A) SELECT title FROM books
WHERE category = 'BUSINESS' OR 'COMPUTER' AND retail >35;
B) SELECT title FROM books
WHERE category = 'BUSINESS' OR category ='COMPUTER' AND retail >35;
C) SELECT title FROM books
WHERE (category = 'BUSINESS' OR category ='COMPUTER' ) AND retail >35;
D) SELECT title FROM books
WHERE category = 'BUSINESS' OR category ='COMPUTER' AND (retail >35) ;
Correct Answer:

Verified
Correct Answer:
Verified
Q104: The<u> LIKE</u> operator is used to indicate
Q105: Contents of the ORDERS table<br> <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB1929/.jpg"
Q106: An ORDER BY clause can reference a
Q107: In a WHERE clause,logical operators are evaluated
Q108: _ is the process by which only
Q110: A(n)<u>clause</u> identifies what must exist or a
Q111: Retrieving only certain rows from a table
Q112: The IN logical operator is similar to
Q113: To indicate that data should be sorted
Q114: Which of the following is not a