1.看你的mysql现在已提供什么存储引擎:
mysql> show engines;
2.看你的mysql当前默认的存储引擎:
mysql> show variables like '%storage_engine%';
3.你要看某个表用了什么引擎(在显示结果里参数engine后面的就表示该表当前用的存储引擎):
mysql> show create table 表名;
4.进入数据库
mysql -uroot -proot
5.显示所有表
show tables
6.进入表
use test
7.展示表结构
show create table xxx
网友评论