Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Self Joins in Mysql... Wie würde ich mich selbst diesem Tisch anschließen?

MySQL-Selbstverknüpfung, die eine Tabelle mithilfe von join

mit sich selbst verknüpft
SELECT * 
FROM table1 AS t1 
INNER JOIN table1 AS t2 
ON t1.col_name=t2.col_name 
WHERE t1.col_name='xyz'