欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version

程序员文章站 2022-03-07 22:37:37
...

在执行查询语句的时候出现报错:

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 'order

mysql数据库表名为order,要特别注意sql的书写

例如:CREATE TABLE `order` 
select count(1) from order    执行不通过,一直提示sql有问题
select count(1) from `order`   正确写法

注意:` 不是单引号,是键盘左上方数字1按键旁边的那个按键。

相关标签: 测试