摘要: 查看表的存储引擎用命令 show create table 表名 更改表的存储引擎用命令 alter table 表名 set ENGINE=新引擎名 示例如下: mysql> show create table t01; + + + | Table | Create Table | + + + | 阅读全文
posted @ 2021-08-09 20:09 逆火狂飙 阅读(727) 评论(0) 推荐(0)
摘要: 打开MySQL控制台,输入语句 show variables like '%storage_engine%' ,执行效果如下。 mysql> show variables like '%storage_engine%'; + + + | Variable_name | Value | + + + | 阅读全文
posted @ 2021-08-09 19:55 逆火狂飙 阅读(400) 评论(0) 推荐(0)