I would like to copy data from an existing table say table1 to a new table table2. The tables' engines are different. I mean, the existing table uses MyISAM and the new one uses Innodb.
This won't work with different engines.
Josaph
2010-06-29 13:00:03
why? I don't see any reason.
Naktibalda
2010-06-29 13:06:46
the engines are irrelevant, it will work. you can even setup replication to different engines.
Brent Baisley
2010-06-29 13:23:36
A:
insert into NewTable (col1, col2, col3) select col1, col2, col3 from OldTable
Tim Coker
2010-06-29 12:56:25
A:
Judas Imam
2010-06-29 12:58:07
A:
Another MyISAM to InnoDB article. http://www.linux.com/archive/feed/46370
Josaph
2010-06-29 12:59:05