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 orders RIGHT OUTER JOIN customers
USING (customer#) ;
B) SELECT lastname,firstname,order#
FROM orders LEFT OUTER JOIN customers
USING (customer#) ;
C) SELECT lastname,firstname,order#
FROM orders FULL OUTER JOIN customers
USING (customer#) ;
D) both a and c
Correct Answer:

Verified
Correct Answer:
Verified
Q16: A(n)_ join is used when the related
Q17: The _ set operator is used to
Q18: Which of the following terms refers to
Q19: When a self-join is created,each copy of
Q20: A column qualifier is separated from the
Q22: <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB1929/.jpg" alt=" Contents of
Q23: Which of the following set operators can
Q24: The _ operator is used to create
Q25: Equality,non-equality,and self-joins are broadly categorized as <u>outer
Q26: When combining the results of two <u>SELECT</u>