InterviewSolution
Saved Bookmarks
| 1. |
What technique is used for the evaluation of a query with a nested sub query?(a) Caching(b) Decorrelated evaluation(c) Correlated evaluation(d) Time based evaluation |
|
Answer» The correct choice is (c) Correlated evaluation For explanation I would say: The technique used to evaluate a query with a nested sub query is called as correlated evaluation. It is not very efficient as a large number of I/O operations may occur. |
|