1、show create table table_name;
使用这个命令可以查询出来表用的引擎是innodb还是myisam,但是只能一个一个表去查询,如果表很多,很麻烦

2、information_schema.tables
select table_name,`engine` from information_schema.tables where table_schema = ‘database_name’;
使用这个命令可以一下子把所有的表都查询出来

3、show table status \G
使用这个命令也是可以一下子把所有表都查询出来,但是除了引擎信息,还有相关的其他信息,需要进行筛选

转载于:https://blog.51cto.com/lynnteng0/1053968