Is there any solution combine 2 table with different structure
I try to use UNION select but since the 2 tables are different structure cannot handle it.
Table 1
ID |NAME|
1 John
2 Ed
3 Anderson
Table 2
ID|NAME |Address
1 John USA
2 Ed UK
3 Anderson JPN
Result I need
ID|NAME |Address
1 John
1 John USA
2 Ed
2 Ed UK
3 Anderson
3 Anderson JPN
You can union them if you do something like this,