Multiple Choice
Structure of the ORDERS table
Structure of the CUSTOMERS table
-Which of the following SQL statements will list the name of each customer stored in the CUSTOMERS table,and,if the customer has placed an order that is contained in the ORDERS table,the order# of any order each customer has placed?
A) SELECT lastname,firstname,order#
FROM customers NATURAL JOIN orders
WHERE orders.customer# IS NOT NULL;
B) SELECT lastname,firstname,order#
FROM customers,orders
WHERE orders.customer# (+) = customers.customer#;
C) SELECT lastname,firstname,order#
FROM customers,orders
WHERE orders.customer# = customers.customer# (+) ;
D) SELECT lastname,firstname,order#
FROM customers NATURAL JOIN orders
WHERE orders.customer# IS NULL;
Correct Answer:

Verified
Correct Answer:
Verified
Q27: Joins are classified as _ joins if
Q28: An outer join operator can be included
Q29: A column qualifier is separated from the
Q30: <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB1929/.jpg" alt=" Contents of
Q31: If you are joining five tables in
Q33: Tables can be joined in the<u> FROM</u>
Q34: The <u>JOIN...USING</u> keywords are used to join
Q35: The <u>outer join</u> operator is placed on
Q36: <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB1929/.jpg" alt=" Structure of
Q37: The <u>ON </u>clause can be used only