InterviewSolution
Saved Bookmarks
| 1. |
What is a correlated sub-query?(a) An independent query that uses the correlation name of another independent query.(b) A sub-query that uses the correlation name of an outer query(c) A sub-query that substitutes the names of the outer query(d) A sub-query that does not depend on its outer query’s correlation names |
|
Answer» Right answer is (b) A sub-query that uses the correlation name of an outer query The best I can explain: A correlated sub-query is the one that uses the correlation name of an outer query. |
|