Mysql中怎么查看创建表时用的哪种引擎以及如何修改引擎
程序员文章站
2022-03-26 19:18:16
...
1.查看创建表时用的哪种引擎:
show table status from 数据库名 where name=‘表名’;
show table status from lying where name='emp7';
2.修改引擎为myisam
alter table 表名 engine=myisam;
alter table emp7 engine=myisam;
注:查看整个数据库所有表使用的引擎方法:
show table status from 数据库名;
show table status from lying;
上一篇: 开源数据库:Ingres Database 9.2 发布
下一篇: js获取当月的第一天以及最后一天