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 the title of the books ordered by customer# 1003?
A) SELECT title
FROM customers NATURAL JOIN books
WHERE customer# = 1003;
B) SELECT title
FROM customers JOIN orders USING (customer#)
JOIN orderitems USING (order#) JOIN books USING (isbn)
WHERE customer# = 1003;
C) SELECT title
FROM customers JOIN orders ON (customer#)
JOIN orderitems ON (order#) JOIN books ON (isbn)
WHERE customer# = 1003;
D) both a and b
Correct Answer:
Verified
Q78: Which of the following keywords is used
Q79: A column qualifier is separated from the
Q80: Q81: If the first table in a Cartesian Q82: A join that is based upon data