What type of join returns all rows from the right table, paired with matching records from the left table, or filling in NULL values if no match is found?
Explanation:
A Right Outer Join retains all rows from the right table, pairing them with matching left table entries or supplying NULL values if matches do not exist.
No comments yet. Be the first to start the discussion!