These are the steps for a correlated subquery, listed in random order:
1. The WHERE clause of the outer query is evaluated.
2. A candidate row is fetched from the table specified in the outer query.
3. This is repeated for the subsequent rows of the table, until all the rows are processed.
4. Rows are returned by the inner query, after being evaluated with the value from the candidate row in the outer query.
Which is the correct sequence in which the Oracle server evaluates a correlated subquery?
- 2,1,4,3
- 4,1,2,3
- 4,2,1,3
- 2,4,1,3
Answer(s): D
Reference:
http://rajanimohanty.blogspot.co.uk/2014/01/correlated-subquery.html
Reveal Solution Next Question