MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds相关的知识,希望对你有一定的参考价值。
下面是我update数据库时打印出来的异常:
Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException:
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 ‘in (
‘1‘
)‘ at line 1
错误分析:
MySQL语法错误,并且是在第一行的“ in (‘1‘)‘ ” 的附近检查。
查找错误:
上面的SQL语句是错误的,这里不应该有“=”。
解决办法:
删除这个“=”号即可。
以上是关于MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds的主要内容,如果未能解决你的问题,请参考以下文章
executeUpdate() 抛出 MySQLSyntaxErrorException
MySQLSyntaxErrorException:用户访问被拒绝
错误:MySQLSyntaxErrorException - 拒绝用户选择命令
MySQLSyntaxErrorException:未知数据库 - JDBC - Java EE
如何解决 JDBC PreparedStatement 中的 MySQLSyntaxErrorException [重复]