查看支持的存储引擎

mysql> show engines;

查看当前默认的存储引擎

mysql> show variables like '%storage_engine%';

查看某个表的存储引擎

mysql> show create table 表名;