The LEFT JOIN keyword returns all records from the left table (table1), and the matched records from the right table (table2). The result is 0 records from the right side, if there is no match.
SELECT column_name(s)
FROM table1
LEFT JOIN table2
ON table1.column_name = table2.column_name; Edit the code below and click Run to see the result live.