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 all books that have had multiple copies requested in a single order?
A) SELECT title
FROM books NATURAL JOIN orderitems
WHERE qty > 1;
B) SELECT title
FROM books JOIN orderitems
WHERE qty > 1;
C) SELECT title
FROM books JOIN orderitems ON (isbn) JOIN orders ON (order#)
WHERE qty>1;
D) SELECT title
FROM books JOIN orderitems USING(isbn) ;
Correct Answer:

Verified
Correct Answer:
Verified
Q39: Which of the following keywords is used
Q40: When combining the results of two SELECT
Q41: The JOIN keyword is used in the
Q42: A self-join can only be specified in
Q43: The outer join operator in the WHERE
Q45: The _ set operator is used to
Q46: Equality,non-equality,and self-joins are all categorized as inner
Q47: <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB1929/.jpg" alt=" Structure of the
Q48: _ operators are used to combine the
Q49: A(n)_ outer join is necessary when you