MacOS 的Sequel Pro数据库管理工具报错

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 XXXX
You have an error in your SQL syntax,check the manual that corresponds to your MySQL server versio

解决方法:

create table 'tb_area
改成
create table `tb_area`
用 `(反引号) 而不是 ’ (单引号)
改完后 不再报错
You have an error in your SQL syntax,check the manual that corresponds to your MySQL server versio

相关文章: