mysql 数据库常用命令总结

(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;

.....续

原文地址:https://www.cnblogs.com/hubing/p/3166600.html