Multiple Choice
Structure of the ORDERS table
Structure of the CUSTOMERS table
-Which of the following SQL statements will return the names of all customers who placed an order on April 12,2003?
A) SELECT lastname,firstname
FROM customers
WHERE orderdate = '12-APR-03';
B) SELECT lastname,firstname
FROM customers NATURAL JOIN orders
WHERE orderdate = '12-APR-03';
C) SELECT lastname,firstname
FROM customers JOIN orders ON (customer#)
WHERE orderdate = '12-APR-03';
D) both a and b
Correct Answer:

Verified
Correct Answer:
Verified
Q80: In Oracle12c,tables can be linked through which
Q81: A(n)<u>non-equality</u> join is used when there are
Q82: A(n)<u>non-equality </u>join is when a table is
Q83: A(n)<u>non-equality</u> join is also known as an
Q84: A full outer join can be created
Q86: A Cartesian join usually results from the
Q87: The _ keywords create a join automatically
Q88: The JOIN keyword is included in which
Q89: A table alias cannot be assigned in
Q90: A(n)<u>Cartesian Join</u> replicates each row from the