0

How to join 4or 5 tables?

How to join more tables in mysql using any join

9th Aug 2016, 10:35 AM
Amit J
Amit J - avatar
2 Answers
+ 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.
9th Aug 2016, 2:57 PM
Björn Örtenberg
Björn Örtenberg - avatar
0
Thanks..
9th Aug 2016, 2:59 PM
Amit J
Amit J - avatar