Multiple Choice
The following code is an example of a(n) :
SELECT Customer_T.CustomerID, Order_T.CustomerID,
CustomerName, OrderID
FROM Customer_T, Order_T
WHERE Customer_T.CustomerID = Order_T.CustomerID;
A) equi-join.
B) subquery.
C) Full Outer JOIN.
D) Right Outer JOIN.
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q79: The natural join is very rarely used.
Q80: A type of join between three tables
Q81: An SQL query that implements an outer
Q82: The UNION clause is used to:<br>A) combine
Q83: What strategies can be used to write
Q85: Triggers can be used to ensure referential
Q86: In SQL, a(n) _ subquery is a
Q87: A routine is a named set of
Q88: A procedure is run by calling it
Q89: What is a derived table? When is