查看表的创建语句:

show create table goods;

修改引擎:
修改表的存储引擎使用: alter table 表名 engine = 引擎类型;
比如:

alter table students engine = 'MyISAM';