Is it possible to merge two MySQL databases into one?
Posted
by
Mike L.
on Stack Overflow
See other posts from Stack Overflow
or by Mike L.
Published on 2011-01-04T01:23:30Z
Indexed on
2011/01/04
1:54 UTC
Read the original article
Hit count: 193
Lets say I have two MySQL databases with some complex table structures. Neither database has the same table name. Lets say these tables contain no rows (they do but I could truncate the tables, the data is not important right now, just testing stuff). Lets say I need these 2 databases merged into one. For instance:
DB1:
cities states
DB2:
index subindex posts
I want to end up with a single DB that contains:
cities states index subindex posts
Is this possible?
© Stack Overflow or respective owner