mysql 批量更换数据库表引擎 InnoDB 到 myISAM
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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
以上是关于mysql 批量更换数据库表引擎 InnoDB 到 myISAM的主要内容,如果未能解决你的问题,请参考以下文章