Reprence Html CSS javascript PHP MySQL Bootsrap

MySQL LEFT JOIN Keyword

The LEFT JOIN keyword returns all records from the left table (table1), and the matching records (if any) from the right table (table2).

88

LEFT JOIN Syntax

89

Demo Database

In this tutorial we will use the well-known Northwind sample database.

Below is a selection from the "Customers" table:

90

And a selection from the "Orders" table:

91

MySQL LEFT JOIN Example

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).