InterviewSolution
Saved Bookmarks
| 1. |
The merge join can be used to compute(a) Natural joins(b) Equi joins(c) Both the mentioned(d) None of the mentioned |
|
Answer» The correct answer is (c) Both the mentioned To explain: The merge join can be used to compute both equijoins and natural joins. This is also called as the sort-merge-join algorithm. |
|