Lesson 27: Joining tables using LEFT JOIN.

By Alan Hylands — 2 minute read

What is the LEFT JOIN?

The LEFT JOIN (also known as LEFT OUTER JOIN) lets us join tables but insists on including all rows from the first table, even if there is no match in the second table.

When would we use the LEFT JOIN?

We might do this if we had a CUSTOMERS table on the left side and an EMAILS table on the right side. We may not have emails for all of our customers but we still want to see all of the customers in our output.

If we had used an INNER JOIN we would only get back those customers who DO have an email record in the EMAILS table.

How do we write a Left Join?

We write the LEFT JOIN like this:

SELECT * 

FROM Customers

LEFT JOIN Emails

ON Customers.EmailAddress = Emails.EmailAddress;

This would return all rows from the Customers table regardless of whether they had a corresponding record in the Emails table. Any customer WITHOUT an email address would have a NULL value in their EmailAddress column (like Maria in our output below).

CustIDCustNameEmailAddress
1Alanalan@simpleanalytical.com
2Julienbaptiste@gendarme.fr
3MariaNULL
Try the next lesson