我正在尝试通过更新查询更新数据库,但我收到一条错误消息
Error 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 'add=null,col=null,wok=null,pcol=null,pwok=null,bio=null where un ='null'' at line 1.
我已经尝试了几个小时来弄清楚我的 SQL 语法中的错误是什么,但我一直无法通过。
更新查询是:
query = "Update users SET em=?, mn=?,add=?,col=?,wok=?,pcol=?,pwok=?,bio=? where un ='"+un+"'";
我需要帮助找出更新语法中的错误,谢谢。