I've seen the article on how to do a full join for 2 tables in MySQL. I've also read this for multiple tables, but here's my unique problem.
I have multiple temp tables (result of SQL queries, but shown below as tables for simplicity)
Table1
ID Value1
1 A
2 B
Table2
ID Value2
2 C
3 D
Table3
ID Value3
1 E
3 F
Table4
....
and so on (At-least 10 tables). What I need is this
ID Value1 Value2 Value3 Value4 ....
1 A E
2 B C
3 D F
4 .......
Trying to do this without a FULL join seems extremely convoluted. What is the simplest way I can achieve this in MySQL?