(1)查看数据库可以支持的存储引擎 命令:show engines; (2)查看表结构命令:desc table_name;(3)显示表的创建语句 show create table table_name;
(4) 显示表的当前状态值 show table status like 'table_name';
(5) 修改数据表的引擎 alter table table_name engine=MyISAM;
.....续