One of my projects use the MyISAM engine in MySQL, but I\'m considering changing it to InnoDB as I need transaction support here and there.
Just altering the table and setting the engine should be fine.
select count(*) from MyTable
is much slower in InnoDB than MyISAM.