Outer join has all the rows from both the tables.
2 Likes
True
Reason — The outer join returns all the rows from both tables being joined, including any rows that do not have a match in the other table.
Answered By
A join condition can only use equality for comparison.
Left join has all the rows from the Left table.
MINUS operator is also called EXCEPT operator.
UNION returns unique rows.