查看表类型 查看存储引擎
> show engines;
> show table status G;
> show table status like '%t1%' G;
设置存储引擎
> create table t11 (id int default null) engine=innodb;
修改表的存储引擎/默认表类型
> alter table t11 engine=myisam;
> show engines;
> show table status G;
> show table status like '%t1%' G;
> create table t11 (id int default null) engine=innodb;
> alter table t11 engine=myisam;