1 查看表的引擎:show create table 表名
2 查看所有表的引擎:show table status\G
3 查看数据库引擎:show engines\G
4 指定引擎:create table test1(name varchar(5)) ENGINE=InnoDB;
1 查看表的引擎:show create table 表名
2 查看所有表的引擎:show table status\G
3 查看数据库引擎:show engines\G
4 指定引擎:create table test1(name varchar(5)) ENGINE=InnoDB;