Solved

The Following Code Is an Example of A

Question 77

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:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions