mysql> show engines;
| MyISAM             | YES     | MyISAM storage engine
mysql> show variables like '%storage_engine%'
    -> ;
+------------------------+--------+
| Variable_name          | Value  |
+------------------------+--------+
| default_storage_engine | InnoDB |
| storage_engine         | InnoDB |
+------------------------+--------+
2 rows in set (0.00 sec)
创建表时  Create table test (id int) TYPE=MyISAM; 
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MyISAM' at line 1