An ANTI JOIN
An ANTI JOIN is a conceptual join achieved using SQL techniques like LEFT JOIN with WHERE IS NULL. It returns all records from one table that do not have matching rows in the other table. It is used to identify unmatched or missing data, such as customers who have not placed any orders or products that have never been sold. While SQL does not have a native ANTI JOIN keyword, it can be achieved using a LEFT JOIN with a WHERE clause filtering for NULL values, or with NOT EXISTS or NOT IN clauses.