Bulk edit engine mysql table, modified from MyISAM to InnoDB

navicat execute statement:

select CONCAT ( 'alter table', table_name, 'engine = InnoDB;') FROM information_schema.tables WHERE table_schema = " database name" AND ENGINE = "MyISAM"; 
then copied the results generated statement on OK

Guess you like

Origin www.cnblogs.com/hyc-go/p/11104308.html