Ingressar no MySQL
Tente isso
select * from table1 t1
join table2 t2 on t1.t2ref = t2.id
join table3 t3 on t2.t3ref = t3.id
Adicione uma cláusula where para pesquisar determinadas linhas na tabela1
where t1.field = 'value'
select * from table1 t1
join table2 t2 on t1.t2ref = t2.id
join table3 t3 on t2.t3ref = t3.id
where t1.field = 'value'