Multiple Choice
Structure of the CUSTOMERS table
-Which of the following queries will display the first and last name of the individual who referred another customer, along with the customer# of the referred customer?
A) SELECT r.firstname, r.lastname, c.customer# FROM customers r, customers c
WHERE r.customer# = c.referred;
B) SELECT r.firstname, r.lastname, c.customer# FROM customers r JOIN customers c
ON r.customer# = c.referred;
C) SELECT r.firstname, r.lastname, c.customer# FROM customers r NATURAL JOIN customers c;
D) both a and b
Correct Answer:

Verified
Correct Answer:
Verified
Q6: Which of the following types of joins
Q32: <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB1929/.jpg" alt=" Structure of
Q35: <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB1928/.jpg" alt=" Structure of
Q41: The JOIN keyword is used in the
Q44: <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB1929/.jpg" alt=" Structure of the
Q60: A column _ indicates the table containing
Q62: <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB1929/.jpg" alt=" Structure of the
Q65: The NATURAL JOIN keywords can be used
Q78: A(n)<u>outer</u> join can be created by not
Q92: A column qualifier indicates the <u>column </u>containing