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

mysql - drei Tabellen abfragen

Mysql Join

Versuchen Sie dies

select * from table1 t1
join table2 t2 on t1.t2ref = t2.id
join table3 t3 on t2.t3ref = t3.id

Fügen Sie eine where-Klausel hinzu, um nach bestimmten Zeilen in Tabelle1 zu suchen

where t1.field = 'value'