Multiple Choice
Structure of the ORDERS table
Structure of the CUSTOMERS table
-Which of the following queries will display data from both the ORDERS and CUSTOMERS tables?
A) SELECT * FROM orders,customers;
B) SELECT lastname,firstname,order#
FROM orders NATURAL JOIN customers;
C) SELECT lastname,firstname,order#
FROM orders,customers
WHERE orders.customer# = customers.customer#;
D) all of the above
Correct Answer:

Verified
Correct Answer:
Verified
Q65: The NATURAL JOIN keywords can be used
Q66: A Cartesian join can be created by
Q67: The NATURAL JOIN keywords can be used
Q68: In a Cartesian join,linking a table that
Q69: If you are joining two tables in
Q71: Which of the following keywords can be
Q72: Which of the following can only be
Q73: A(n)<u>inner join</u> will only include rows that
Q74: If a Cartesian join is used to
Q75: Which of the following set operators will