SELF-JOIN

 

A self-join is a query in which a table is joined (compared) to itself.  Self-joins are used to compare values in a column with other values in the same column in the same table.

 

To write the query, select from the same table listed twice with different aliases, set up the comparison, and eliminate cases where a particular value is equal to itself.

 

Example

           

Which customers are located in the same state (column name is Region)?

 

            SELECT DISTINCT c1.ContactName, c1.Address, c1.City, c1.Region

            FROM Customers AS c1, Customers AS c2

            WHERE c1.Region = c2.Region

            AND c1.Region is not null

            AND c2.Region is not null

            AND c1.ContactName <> c2.ContactName

            ORDER BY c1.Region, c1.ContactName;

 

Exercise

 

Which customers are located in the same city?