Multiple Choice
Structure of the CUSTOMERS table
Structure of the ORDERS table
Structure of the ORDERITEMS table
Structure of the BOOKS table
-Which of the following SQL statements will display books that have not been ordered recently?
A) SELECT title
FROM books,orderitems
WHERE books.isbn <> orderitems.isbn;
B) SELECT title
FROM books NATURAL JOIN orderitems
WHERE JOIN IS NULL;
C) SELECT title FROM books NATURAL JOIN orderitems
MINUS
SELECT title FROM books;
D) SELECT title FROM books
MINUS
SELECT title FROM books NATURAL JOIN orderitems;
Correct Answer:

Verified
Correct Answer:
Verified
Q57: A table alias is assigned in the
Q58: Which of the following types of joins
Q59: If you are joining four tables in
Q60: A column _ indicates the table containing
Q61: The _ JOIN keyword can be used
Q63: Explain the purpose of a set operator.
Q64: Give the appropriate situation in which to
Q65: The NATURAL JOIN keywords can be used
Q66: A Cartesian join can be created by
Q67: The NATURAL JOIN keywords can be used