mysql 批量更换数据库表引擎 InnoDB 到 myISAM

USE `xxdb`;

SELECT CONCAT( 'ALTER TABLE ' ,TABLE_NAME ,' ENGINE=MyISAM; ') as `sql-commands-for-convert-engine`
    FROM information_schema.TABLES AS t
    WHERE TABLE_SCHEMA = 'xijishopdb' AND TABLE_TYPE = 'BASE TABLE';

show table status from xxdb
原文地址:https://www.cnblogs.com/Jscriptman/p/mysql-commands-for-convert-engine.html