DML: SELECT with LEFT (OUTER) JOIN

The LEFT JOIN or LEFT OUTER JOIN in SQL is a concept in relational database management systems (RDBMS) that allows you to combine rows from two or more tables based on a related column between them.

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 on the right side when there is no match.

Basic Syntax

SELECT column_name(s)
FROM table1
LEFT JOIN table2
ON table1.column_name = table2.column_name;
  • table1: The left table.
  • column_name(s): The column(s) you want to select.
  • table2: The right table.
  • table1.column_name = table2.column_name: The condition that connects the two tables.

Example 1

Let’s start with a basic example:

Table “order”

order_idcustomer_idorder_date
132020-07-04 12:34:56
212020-09-13 12:34:56
322020-10-09 12:34:56
452020-12-02 12:34:56

Table “customer”

customer_idnamecountry
1JohnUSA
2MichaelGermany
3SarahFrance
4SallyUK

We can find all orders, whether they have a matching customer or not, using the following query:

SELECT order.order_id, customer.name, customer.country
FROM order
LEFT JOIN customer
ON order.customer_id = customer.customer_id;

The result-set will look like this:

order_idnamecountry
1SarahFrance
2JohnUSA
3MichaelGermany
4NULLNULL

The order_id 4 has no matching customer_id in the Customers table, so it returns NULL.

Example 2 - Joining More than Two Tables

Let’s consider a new table called “product”:

Table “product”

product_idproduct_nameprice
1Apple1.00
2Banana0.50
3Cherry2.00

To get all orders, the customer who made the order, and the product bought, we can use a LEFT JOIN twice:

SELECT order.order_id, customer.name, product.product_name
FROM order
LEFT JOIN customer ON order.customer_id = customer.customer_id
LEFT JOIN product ON order.product_id = product.product_id;

The result-set will look like this:

order_idnameproduct_name
1SarahApple
2JohnBanana
3MichaelCherry
4NULLNULL

Here, Order 4 doesn’t match with any customer or product, so it returns NULL in those fields.

Example 3 - Using LEFT JOIN with WHERE Clause

You can also use the `

LEFT JOINclause with theWHERE` clause to filter the records.

SELECT order.order_id, customer.name, customer.country
FROM order
LEFT JOIN customer
ON order.customer_id = customer.customer_id
WHERE customer.country = 'USA';

Result-set:

order_idnamecountry
2JohnUSA

The result only includes orders from customers in the USA. Other orders, or orders with no matching customer in the USA, are not included in the result set.

Example 4 - Using LEFT JOIN with Aggregate Functions

LEFT JOIN can also be used with aggregate functions like COUNT(), SUM(), AVG(), etc.

Let’s say we want to count the number of orders each customer has made:

SELECT customer.name, COUNT(order.order_id) as number_of_orders
FROM customer
LEFT JOIN order
ON customer.customer_id = order.customer_id
GROUP BY customer.name;

Result-set:

namenumber_of_orders
John1
Michael1
Sarah1
Sally0

This query groups the orders by customer names, and counts the number of orders each customer has made. Sally has not made any orders, so the NumberOfOrders is 0.

  1. SQL LEFT JOIN Keyword - W3Schools
  2. The SQL LEFT JOIN syntax - SQL Tutorial
  3. LEFT OUTER JOIN in SQL Server - Microsoft Docs
  4. SQL Aggregate Functions - W3Schools
  5. The GROUP BY Statement in SQL - SQL Tutorial
  6. Using JOINs in SQL Server - Microsoft Docs
  7. Filtering Data with WHERE Clause in SQL Server - SQL Server Tutorial
Last updated on