Concept
Right Outer Join 0
A Right Outer Join in SQL returns all records from the right table and the matched records from the left table, filling with NULLs where there is no match. It is particularly useful when you want to retain all entries from the right table regardless of whether they have corresponding matches in the left table.
Relevant Degrees