Probeer dit
select * from table1 t1
join table2 t2 on t1.t2ref = t2.id
join table3 t3 on t2.t3ref = t3.id
Voeg een where-clausule toe om naar bepaalde rijen in tabel1 te zoeken
where t1.field = 'value'
Probeer dit
select * from table1 t1
join table2 t2 on t1.t2ref = t2.id
join table3 t3 on t2.t3ref = t3.id
Voeg een where-clausule toe om naar bepaalde rijen in tabel1 te zoeken
where t1.field = 'value'