时间:2021-07-01 10:21:17 帮助过:27人阅读
一、问题:
工作中使用sql语句建表时,mysql报了如下错误:
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=InnoDB' at line 1
二、解决方案:
这个报错是由于某些版本的mysql不支持type写法,将type关键词改成ENGINE 即可。
希望本文所述对大家MySQL数据库设计有所帮助。