Introduction
A FULL OUTER JOIN helps you combine all rows from two tables, showing matches and also rows without matches from both sides. But not all databases support it the same way.
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 all differences and matches between them.
You want to merge two datasets fully, keeping all information from both.
You are working with two tables and want to find unmatched rows on either side.