DML: SELECT with RIGHT (OUTER) JOIN

The RIGHT JOIN or RIGHT 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 RIGHT JOIN keyword returns all records from the right table (table2), and the matched records from the left table (table1). The result is NULL on the left side when there is no match.

Basic Syntax

SELECT column_name(s)
FROM table1
RIGHT 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 00:00:01
322020-10-09 11:11:11
452020-12-02 23:59:59

Table “customer”

customer_idnamecountry
1JohnUSA
2MichaelGermany
3SarahFrance
4SallyUK

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

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

The result-set will look like this:

order_idnamecountry
1SarahFrance
2JohnUSA
3MichaelGermany
NULLSallyUK

We see that the customer Sally has no matching order in the order table, so it returns NULL for order_id.

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
4Dates3.00

To get all products, the order they are included in, and the customer who made the order, we can use a RIGHT JOIN twice:

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

The result-set will look like this:

order_idnameproduct_name
1SarahApple
2JohnBanana
3MichaelCherry
NULLNULLDates

Here, the product “Dates” doesn’t match with any order or customer, so it returns NULL in those fields.

Example 3 - Using RIGHT JOIN with WHERE Clause

You can also use the RIGHT JOIN clause with the WHERE clause to filter the records.

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

Result-set:

order_idnamecountry
2JohnUSA

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

Example 4 - Using RIGHT JOIN with Aggregate Functions

RIGHT 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 order
RIGHT JOIN customer
ON order.customer_id = customer.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 RIGHT JOIN Keyword - W3Schools
  2. RIGHT OUTER JOIN in SQL Server - Microsoft Docs
  3. SQL Aggregate Functions - W3Schools
  4. The GROUP BY Statement in SQL - SQL Tutorial
  5. Using JOINs in SQL Server - Microsoft Docs
  6. Filtering Data with WHERE Clause in SQL Server - SQL Server Tutorial
Last updated on