TOP

SQL Self Join (autocollegamento)

SQL Self Join Descrizione

Un self-join è un join regolare in cui una tabella viene unita a se stessa.


Self Join Sintassi

SELECT column_name(s)
FROM table1 T1, table1 T2
WHERE condition

T1 e T2 sono alias diversi per la stessa tabella.

Banca dati dimostrativa

In questo tutorial utilizzeremo il famoso database di esempio "Northwind".

Di seguito è riportato un esempio della tabella "Customers" ("Clienti").

CustomerIDCustomerNameContactNameAddressCityPostalCodeCountry
1Alfreds FutterkisteMaria AndersObere Str. 57Berlin12209Germany
2Ana Trujillo Emparedados y heladosAna TrujilloAvda. de la Constitución 2222México D.F.5021Mexico
3Antonio Moreno TaqueríaAntonio MorenoMataderos 2312México D.F.5023Mexico
4Around the HornThomas Hardy120 Hanover Sq.LondonWA1 1DPUK
5Berglunds snabbköpChristina BerglundBerguvsvägen 8LuleåS-958 22Sweden

SQL Self Join Esempio

La seguente istruzione SQL seleziona i clienti da una città (City):

Run SQLSELECT A.CustomerName AS CustomerName1, B.CustomerName AS CustomerName2, A.City 
FROM Customers A, Customers B 
WHERE A.CustomerID <> B.CustomerID 
AND A.City = B.City 
ORDER BY A.City
Il dialetto MySQL utilizza "!=" invece di "<>".