I have a database on both the servers with different table values and a
third server with the same named db and tables in MYSQL
server1-db1-table1
table1
ID Number
1 101
2 102
3 103
server2-db1-table1
table1
ID Number
4 201
5 202
6 303
How can I merge these two databases on a different server?
Like the desired result
server3-db1-table1
table1
ID Number
1 101
2 102
3 103
4 201
5 202
6 303
Thanks