Multiple Choice
The following code would include:
SELECT Customer_T.CustomerID, Order_T.CustomerID,
CustomerName, OrderID
FROM Customer_T, Order_T
WHERE Customer_T.CustomerID = Order_T. CustomerID;
A) all rows of the Order_T Table regardless of matches with the Customer_T Table.
B) all rows of the Customer_T Table regardless of matches with the Order_T Table.
C) only rows that match both Customer_T and Order_T Tables.
D) only rows that don't match both Customer_T and Order_T Tables.
Correct Answer:

Verified
Correct Answer:
Verified
Q66: The following code would include: <br>SELECT Customer_T.CustomerID,CustomerName,
Q67: A natural join is the same as
Q68: Discuss the differences between an equi-join, natural
Q69: IF-THEN-ELSE logical processing cannot be accomplished within
Q70: Constraints are a special case of triggers.
Q72: A type of query that is placed
Q73: EXISTS takes a value of false if
Q74: User-defined functions can improve system performance because
Q75: The following code is an example of
Q76: Using an outer join produces this information: