Introduction
A right join helps you combine two tables by keeping all rows from the second table and matching rows from the first table.
You want to keep all records from the second table even if there is no match in the first table.
You have sales data and want to add employee info, but keep all sales even if there is no matching employee.
You want to combine customer orders with shipment details, keeping all shipment records even if some orders are missing.
You want to see all products in stock and add supplier info, keeping all suppliers even if some products are missing.