How can I merge two MySql tables that have the same structure? The primary keys of the two tables will clash, so I have take that into account.
|
|
You can also try:
which allows those rows in table_1 to supersede those in table_2 that have a matching primary key, while still inserting rows with new primary keys. Alternatively,
will update those rows already in table_1 with the corresponding row from table_2, while inserting rows with new primary keys. |
|||
|
|
|
It depends on the semantic of the primary key. If it's just autoincrement, then use something like:
If PK means something, you need to find a way to determine which record should have priority. You could create a select query to find duplicates first (see answer by cpitis). Then eliminate the ones you don't want to keep and use the above insert to add records that remain. |
|||
|
|
|
||||
|
|
If you need to do it manually, one time: First, merge in a temporary table, with something like:
Then, identify the primary key constraints with something like
Where PK is the primary key field... Solve the duplicates. Rename the table. [edited - removed brackets in the UNION query, which was causing the error in the comment below] |
||||
|
|
You could write a script to update the FK's for you.. check out this blog: http://multunus.com/2011/03/how-to-easily-merge-two-identical-mysql-databases/ They have a clever script to use the information_schema tables to get the "id" columns:
|
|||
|
|
protected by Will♦ Oct 20 '10 at 10:28
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.