I've got a problem, I need to merge 2 databases to one db.
Problem there are the same tables, but each tables got different field.
Example:
DB1 should merged to DB2
DB1 Table: xyz Fields: id, field1, field2 etc
DB2 Table: abc Fields: id, field1, field3 etc
If I try to insert SQL from DB1 to DB2, I got errors like "Column field2 not found"
Is there a tool which can help me merge these databases?
I tried it with MySQL Workbench, no success.
Thanks for your helping.
Greets Chris
abc(field1,field2) VALUES ('asd','qwe') 2) I need to merge 2 Databases, but acutally i try it on table level - Chris