What type of join is needed when you wish to return rows that do not have matching values?
Answers
Answered by
1
Explanation:
- In Oracle, the (+) specifies that the join is an outer join (instead of an inner join as this implicit join syntax usually implies).
- Making it an outer join means that the row should be included in the results even if that particular item is null.
Answered by
28
Explanation:
OUTER JOIN is the only join which shows the unmatched rows.
In SQL the FULL OUTER JOIN combines the results of both left and right outer joins and returns all (matched or unmatched) rows from the tables on both sides of the join clause. Let's combine the same two tables using a full join. Here is an example of full outer join in SQL between two tables.
Similar questions
Environmental Sciences,
6 months ago
Sociology,
6 months ago
CBSE BOARD X,
11 months ago
Biology,
11 months ago