What is the result of a LEFT JOIN operation?
Q1. What is the result of a LEFT JOIN operation?
Answer: All rows from the left table, with NULLs in non-matching columns
Explanation: A LEFT JOIN returns all rows from the left table, with NULLs in columns where there are no matches in the right table.