转 MySQL 1064 You have an error in your SQL syntax 错误解决办法

 


一、报错信息

 

1
2
错误代码: 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 'desc ='xx' LIMIT 0, 1000' at line 1 
1
中文解释(百度翻译......):
1
1064您的SQL语法中有一个错误;请查看与您的MySQL服务器版本相对应的手册,以了解在第1行使用接近 'desc ='xx' LIMIT 0,1000'的语法。

  

二、报错原因

  这是因为数据库表中的字段名引用了关键字,例如上面报错字段“desc”。
 

三、解决办法

写sql语句时,引用到与mysql关键字重名的字段时,加上``:
1
select from package where `desc` ='xx';

  

如下,搜索成功:
 

 

 

 

 #######sample 2;

 

错误代码 / 使用中文字符 或者;  使用中文字符 

soruce /tmp/0518/tbl_export_cards.sql

 

正确用法:/ 使用英文字符

source /tmp/0518/test.sql

posted @ 2022-05-18 21:23  feiyun8616  阅读(1292)  评论(0编辑  收藏  举报