org.springframework.jdbc.BadSqlGrammarException
- 偶然间发现了这个问题,感觉挺简单吧,但是也不简单,感觉不简单吧,其实没有那么
- 接下来就描述这个问题,今天在做查询表述一条数据的时候出现这个问题
- 错误如下:
org.springframework.jdbc.BadSqlGrammarException:
Error querying database. Cause: java.sql.SQLSyntaxErrorException: 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,status FROM n_note WHERE id=1’ at line 1
The error may exist in com/an/notepad/mapper/NoteMapper.java (best guess)
The error may involve defaultParameterMap
The error occurred while setting parameters
SQL: SELECT id,created,title,user_id,content,desc,status FROM n_note WHERE id=?
Cause: java.sql.SQLSyntaxErrorException: 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,status FROM n_note WHERE id=1’ at line 1
; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: 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,status FROM n_note WHERE id=1’ at line 1
at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:235) ~[spring-jdbc-5.2.5.RELEASE.jar:5.2.5.RELEASE]
at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:72) ~[spring-jdbc-5.2.5.RELEASE.jar:5.2.5.RELEASE]
at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:74) ~[mybatis-spring-2.0.2.jar:2.0.2]
我一开始觉得挺奇怪的,因为查询所有数据的时候可以,但是根据id查询具体一条数据的时候就出现这个错误提示
文章图片
文章图片
然后我就去查了一下这个异常,真是老脸通红哇,这个异常属于
低级SQL异常 BadSqlGrammarException
哈哈,然后我就去看我的语句去了,然而更邪门的出现了。我的项目是集成Mybatis Plus,我压根就没写SQL语句,这…- 最后在我仔细分析了一下报错的语句,我发现了一个问题
文章图片
我的表字段是这样的
里面的文章描述我为了省事 使用了desc
但是这正好是SQL语句中的一个关键字,这真是,一个让人拍脑门的错误,所以字段名一定不能和SQL关键字冲突。
文章图片
文章图片
总结
- 有时候在命名的时候一定的注意,不能和
SQL
中的关键字冲突,java
中也会是,我真的是被自己的偷懒上了一课哇,如果大家有这个问题,可以去看看是自己SQL
有问题,还是字段名和关键字冲突了,都不是的话认真分析错误日志。
推荐阅读
- 面试|Spring Boot拦截器(Interceptor)详解
- 面试|Spring Boot框架
- 面试|解决——》Handler dispatch failed; nested exception is java.lang.NoSuchMethodError
- WebGL管网展示(及TubeGeometry优化)
- js获取git分支信息
- Visual|VSCode中Vue3插件使用整理_Vue3开发插件
- #|vue使用 APlayer+Meting实现音乐播放,支持多平台音乐(网易云、腾讯、虾米、酷狗、百度)
- 笔记|如何在若依中做数据权限
- Web|Web学习(十一) Vue