欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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;