What is the difference between a inner join and a left join?
Q1. What is the difference between a inner join and a left join?
Answer: An inner join returns only matching records, while a left join returns all records from the left table and matching records from the right table
Explanation: An inner join returns only matching records, while a left join returns all records from the left table and matching records from the right table.