首页 > 数据库 >You have an error in your SQL syntax; check the manual that corresponds to y完美解决

You have an error in your SQL syntax; check the manual that corresponds to y完美解决

时间:2022-11-06 16:36:39浏览次数:40  
标签:mysql error manual syntax 关键字 sql your


Query : select * from order LIMIT 0, 1000 Error Code : 1064 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 LIMIT 0, 1000' at line 1

you have an error in your sql syntax; check the manual that corresponds to y

You have an error in your SQL syntax; check the manual that corresponds to y完美解决_sql文件

在查询数据的时候遇到这个错误,刚开始感觉自己写的sql语句没有问题啊,但就是提示我的sql语法错误,后来终于找到了原因1、该错误一般出现在表名或字段名设计的过程中出现了mysql关键字导致的。如果你用了mysql中的关键字做字段,当你查询的时候可以用  `order` 来括起来,这个 ` 并不是单引号,而是数字那一行键的最左边的那个键,在英文状态下的才为 ` ,用它把关键字括起来就可以解决这个问题。确实是sql语句里有语法错误,如果列名是mysql的关键字,请用“`”括起来。

2.这种情况很郁闷,是编辑器的问题,我的sql文件用ultraedit编辑的,ultraedit的UTF8编码是UTF8 BOM,可以用notepad++打开,更改为UTF8编码即可,sql文件可正常运行。

大部分情况下如果列名是mysql的关键字,请用“`”括起来即可。

标签:mysql,error,manual,syntax,关键字,sql,your
From: https://blog.51cto.com/yetaotao/5827307

相关文章