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 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
Correct Answer:
Verified
Q1: The INTERSECT set operator only displays the
Q2: The MINUS set operator is used to
Q3: The outer join operator is placed on
Q4: By default,use of the JOIN keyword creates
Q6: Which of the following types of joins
Q7: Data stored in separate tables can be
Q8: The USING clause must be used with
Q9: The <u>outer join</u> operator is used to
Q10: The JOIN keyword must be used in
Q11: <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB1929/.jpg" alt=" Structure of the