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 records, LEFT JOIN returns all records from the left table
Explanation: INNER JOIN returns only the records that have matching values in both tables, while LEFT JOIN returns all records from the left table and the matching records from the right table.