Introduction
A FULL OUTER JOIN helps you combine rows from two tables, showing all matches and also rows that don't have a match in either table.
You want to see all customers and all orders, even if some customers have no orders and some orders have no customers.
You need to compare two lists and find which items are only in one list or the other, and which are in both.
You want to merge employee data from two departments, including employees unique to each department.
You want to find all products and their sales, including products that have never been sold and sales records without a product.