- SQL Basics
- SQL Introduction
- SQL Syntax
- SQL Sample Database
- SQL SELECT
- SQL WHERE
- SQL ORDER BY
- SQL DISTINCT
- SQL LIMIT
- SQL FETCH
- SQL AND
- SQL OR
- SQL BETWEEN
- SQL IN
- SQL LIKE
- SQL IS NULL
- SQL Comparison Operators
- SQL Logical Operators
- SQL Alias
- SQL CASE
- Joins and Subqueries
- SQL INNER JOIN
- SQL LEFT JOIN
- SQL RIGHT JOIN
- SQL FULL OUTER JOIN
- SQL SELF JOIN
- SQL CROSS JOIN
- SQL Subquery
- SQL Correlated Subquery
- SQL UNION
- SQL INTERSECT
- SQL EXCEPT
- Aggregate Functions
- SQL AVG
- SQL COUNT
- SQL MAX
- SQL MIN
- SQL SUM
- SQL GROUP BY
- SQL HAVING
- SQL ROLLUP
- SQL CUBE
- SQL GROUPING SETS
- Database Management
- SQL CREATE DATABASE
- SQL ALTER DATABASE
- SQL DROP DATABASE
- SQL BACKUP DATABASE
- SQL SHOW DATABASES
- SQL SELECT DATABASE
- Table Management
- SQL CREATE TABLE
- SQL ALTER TABLE
- SQL ADD COLUMN
- SQL DROP COLUMN
- SQL DROP TABLE
- SQL TRUNCATE TABLE
- SQL SHOW TABLES
- SQL RENAME TABLE
- SQL Constraints
- SQL Primary Key
- SQL Foreign Key
- SQL UNIQUE Constraint
- SQL CHECK Constraint
- SQL NOT NULL Constraint
SQL FULL OUTER JOIN
The FULL OUTER JOIN in SQL combines the results of both LEFT JOIN and RIGHT JOIN. It returns all records from both tables, matching rows where possible. If there is no match, NULL values are returned for the columns from the non-matching table.
Syntax of FULL OUTER JOIN
SELECT columns
FROM table1
FULL OUTER JOIN table2
ON table1.column = table2.column;
table1
: The first table in the join.table2
: The second table in the join.column
: The column used to match rows between the two tables.
Example
Consider the following two tables:
Customers Table
Orders Table
FULL OUTER JOIN Query
To get a list of all customers and their orders, even if no match exists:
SELECT customers.name, orders.order_id, orders.order_date
FROM customers
FULL OUTER JOIN orders
ON customers.customer_id = orders.customer_id;
Output:
Explanation:
- Alice and Bob have matching orders, so their details are included.
- Charlie has no matching order, so the
order_id
andorder_date
areNULL
. - The order with
order_id = 103
has no matching customer, so thename
isNULL
.
FULL OUTER JOIN with WHERE Clause
You can filter the result using a WHERE
clause. For instance, to find records where no match exists:
SELECT customers.name, orders.order_id, orders.order_date
FROM customers
FULL OUTER JOIN orders
ON customers.customer_id = orders.customer_id
WHERE customers.customer_id IS NULL OR orders.customer_id IS NULL;
Output:
This query returns only the unmatched rows.
FULL OUTER JOIN with Multiple Tables
To join more than two tables with a FULL OUTER JOIN, you chain the joins:
SELECT customers.name, orders.order_id, payments.payment_date
FROM customers
FULL OUTER JOIN orders ON customers.customer_id = orders.customer_id
FULL OUTER JOIN payments ON orders.order_id = payments.order_id;
This retrieves customers, their orders, and payment details, including unmatched rows from any table.
Key Points
- FULL OUTER JOIN combines the results of LEFT JOIN and RIGHT JOIN.
- It includes:
- All rows where there is a match between the two tables.
- Rows from the left table with no match in the right table.
- Rows from the right table with no match in the left table.
- Unmatched rows have NULL values for columns of the other table.
Summary
The FULL OUTER JOIN is ideal when you need a complete view of both tables, including matching and non-matching rows. It is commonly used in reporting or when working with incomplete data from multiple sources.