What is the difference between INNER JOIN and LEFT JOIN?
Q1. What is the difference between INNER JOIN and LEFT JOIN?
Answer: INNER JOIN returns matching rows, LEFT JOIN returns all rows from the left table
Explanation: INNER JOIN returns rows with matches in both tables, while LEFT JOIN returns all rows from the left table and matching rows from the right table.