Multiple Choice
The following code is an example of a:
SELECT CustomerName, CustomerAddress, CustomerCity, CustomerState,
CustomerPostalCode
FROM Customer_T
WHERE Customer_T.CustomerID =
(SELECT Order_T.CustomerID
FROM Order_T
WHERE OrderID = 1008) ;
A) correlated subquery.
B) subquery.
C) join.
D) FULL OUTER JOIN.
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
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:
Q78: A trigger is a named set of
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