显示Mysql所支持的引擎有哪些 show engines; 结果 查询某一个数据库中所有表的相关信息,包括引擎信息 show table status from 数据库名; 结果 修改表的引擎 alter table 表名 engine = innodb; 显示表结构包括引擎信息 show create table 表名; 结果