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 not list the orders that have been shipped to Atlanta or Seattle?
A) SELECT * FROM orders WHERE shipcity = 'ATLANTA' OR shipcity = 'SEATTLE';
B) SELECT * FROM orders WHERE shipcity IN ( 'ATLANTA' ,'SEATTLE') ;
C) SELECT * FROM orders WHERE shipcity = 'Atlanta' OR shipcity = 'Seattle';
D) SELECT * FROM orders WHERE shipcity LIKE 'AT%' OR shipcity LIKE 'SEA%';
Correct Answer:

Verified
Correct Answer:
Verified
Q16: An ORDER BY clause can reference a
Q17: The underscore symbol (_)is used in a
Q18: To find rows containing a NULL value
Q19: Which of the following clauses is used
Q20: If a user performs a query that
Q22: The _ comparison operator is used to
Q23: The maximum number of columns that can
Q24: NOT,AND,and OR are <u>comparison </u>operators._
Q25: Which of the following operators can be
Q26: Which of the following is a valid