6、mysql数据表、数据库存储引擎的查看和指定

1 查看表的引擎:show create table 表名

2 查看所有表的引擎:show table status\G

3 查看数据库引擎:show engines\G

4 指定引擎:create table test1(name varchar(5)) ENGINE=InnoDB;

猜你喜欢

转载自blog.csdn.net/qq_36327687/article/details/84873134