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;
Select one:
a. only rows that don't match both Customer_T and Order_T Tables.
b. all rows of the Order_T Table regardless of matches with the Customer_T Table.
c. all rows of the Customer_T Table regardless of matches with the Order_T Table.
d. only rows that match both Customer_T and Order_T Tables.

Solved
Show answers

Ask an AI advisor a question