mybatis java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax;
程序员文章站
2022-09-14 11:50:13
You have an error in your SQL syntax; 这个错误 是报的 sql 语法不对;解决起来 还是有点麻烦的,如果sql 单独运行没有问题,就需要考虑 mybatis的解析运行的问题;1, 取值错误例如: select * from table limit #{startPage},#{endPage}上边 sql 语句 一眼看到 是没什么问题;但是 mybatis 就会报错;原因 类型不对;解释: #{} mybatis 中是 字符串替换......
You have an error in your SQL syntax; 这个错误 是报的 sql 语法不对;
解决起来 还是有点麻烦的,如果sql 单独运行没有问题,就需要考虑 mybatis的解析运行的问题;
1, 取值错误
例如: select * from table limit #{startPage},#{endPage}
上边 sql 语句 一眼看到 是没什么问题;
但是 mybatis 就会报错;
原因 类型不对;
解释: #{} mybatis 中是 字符串替换 默认是 加 引号的
正确用法:
select * from table limit ${startPage},$endPage}
2. 多加了标识符
例如 select * from table;
上边语句 单独执行也是没问题的,但是 mybatis会有问题
原因 ;mybatis 在解析的时候会解析这个分号,但是它不认识 就会 返回报错
正确用法: select * from table
sql 中 多加 逗号 也是同理;
本文地址:https://blog.csdn.net/HDXxiazai/article/details/107152046
上一篇: 又见损人雷语小段子
下一篇: 为什么要迁移到MySQL8.0?
推荐阅读
-
pymysql.err.ProgrammingError: (1064, “You have an error in your SQL syntax; check the manual that co
-
mybatis java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax;
-
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version
-
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version
-
MySql-You have an error in your SQL syntax; check the manual that corresponds to your MySQL server v
-
(1064, "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server
-
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version
-
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version
-
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version
-
Mysql错误:[Err] 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