Which type of JOIN returns all matching rows from both tables, plus all unmatched rows from the left table with NULL values filled in for the right table columns? MCQ with Answer and Explanation
Which type of JOIN returns all matching rows from both tables, plus all unmatched rows from the left table with NULL values filled in for the right table columns?
A. Full Outer Join
B. Left Outer Join
C. Right Outer Join
D. Inner Join
Answer: Option B
Solution (By JKExamLibrary)
A Left Outer Join preserves all records from the left table, matching them with right table records when possible, or inserting NULL values if no match is found.
No comments yet. Be the first to start the discussion!