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

 

posted @ 2017-01-03 17:53  mild  阅读(1407)  评论(1编辑  收藏  举报