-- 查看当前的mysql提供什么存储引擎 show engines; -- 查看当前默认的存储引擎 show variables like '%storage_engine%'; -- 查看表的引擎 show create table 表名; show table status from MyDB where name='test' \G select table_catalog ,table_schema ,table_name ,engine from information_schema.tables where engine='MyISAM'; -- 查看Mysql服务器的版本 select version();