InterviewSolution
Saved Bookmarks
| 1. |
What is the difference between a join and an outer join operation?(a) There is no difference(b) Join preserves a few tuples that are otherwise lost in the outer join(c) Outer join preserves a few tuples that are otherwise lost in the join(d) An outer join can be used only on outer queries whereas a join operation can be used in Subqueries |
|
Answer» Correct option is (c) Outer join preserves a few tuples that are otherwise lost in the join For explanation I would say: The outer join operation preserves a few tuples that are otherwise lost in the join operation. The outer join operation preserves the tuples to the right of the operation. |
|