What is the purpose of the SQL LEFT JOIN clause?
A. Retrieve all rows from the left table
B. Retrieve rows that have no matching rows in the right table
C. Combine rows from two or more tables
D. Exclude specified rows
LEFT JOIN retrieves all rows from the left table, and the matched rows from the right table.