Multiple Choice
Which of the following will display all books that were published at least three years before they were ordered?
A) SELECT title
FROM customers NATURAL JOIN orders
NATURAL JOIN orderitems NATURAL JOIN books
WHERE orderdate - pubdate >= 3;
B) SELECT title,
FROM orders o, orderitems oi, books b
WHERE
C) isbn = oi.isbn AND oi.order# = o.order# AND (orderdate-pubdate) /365 >= 3;.
D) isbn = oi.isbn AND oi.order# = o.order# AND orderdate - pubdate >= 3;,
E) SELECT title.
FROM orders o, orderitems oi, books b
WHERE..
Correct Answer:

Verified
Correct Answer:
Verified
Q4: By default,use of the JOIN keyword creates
Q13: A join that is based upon data
Q18: Which of the following terms refers to
Q19: When a self-join is created,each copy of
Q37: The <u>ON </u>clause can be used only
Q58: Which of the following types of joins
Q61: The _ JOIN keyword can be used
Q74: If a Cartesian join is used to
Q81: <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB1928/.jpg" alt=" Structure of
Q96: A cross join between two tables,containing four