Given the following query, which statement is correct? SELECT order# FROM orders WHERE order# IN (SELECT order#

Question:

Given the following query, which statement is correct?
SELECT order# FROM orders
WHERE order# IN (SELECT order# FROM orderitems
WHERE isbn = '9959789321');
a. The statement doesn’t execute because the subquery and outer query don’t reference the same table.
b. The outer query removes duplicates in the subquery’s Order# list.
c. The query fails if only one result is returned to the outer query because the outer query’s WHERE clause uses the IN comparison operator.
d. No rows are displayed because the ISBN in the WHERE clause is enclosed in single quotation marks.

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question

Oracle 12c SQL

ISBN: 978-1305251038

3rd edition

Authors: Joan Casteel

Question Posted: