SQL LEFT JOIN Keyword
Last updated
Last updated
The LEFT JOIN keyword returns all records from the left table (table1), and the matched records from the right table (table2). The result is NULL from the right side, if there is no match.
Note: In some databases LEFT JOIN is called LEFT OUTER JOIN.
In this tutorial we will use the well-known Northwind sample database.
Below is a selection from the "Customers" table:
And a selection from the "Orders" table:
The following SQL statement will select all customers, and any orders they might have:
Note: The LEFT JOIN keyword returns all records from the left table (Customers), even if there are no matches in the right table (Orders).