0
How to join 4or 5 tables?
How to join more tables in mysql using any join
2 Respuestas
+ 3
I'd use multiple inner joins but that depends on what data you want, for example :
Select * from table 1 as t1
Join table 2 t2 on t1.id = t2.id
.....
Join table 6 t6 on t5.id = t6.id
This will join all above tables into one single temporary table.
0
Thanks..