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

mysql查看表使用的发动机

程序员文章站 2022-05-17 09:30:09
...

mysql查看表使用的引擎 show table status from 数据库名 where name=表名; 对其进行更改: alter table 表名 engine=innodb; alter table 表名 engine=myisam;

mysql查看表使用的引擎
show table status from 数据库名 where name=表名;

对其进行更改:
alter table 表名 engine=innodb;

alter table 表名 engine=myisam;