How to convert database storage engine from InnoDB to MyISAM on MySQL? I found so many sites which convert the storage engine of datab
InnoDB
MyISAM
MySQL
use this!!
SET storage_engine=MYISAM; ALTER TABLE table_name ENGINE = MyISAM;
-cheers!!