当使用update语句时出现Data truncation: Truncated incorrect DOUBLE value:??错误.
把你的sql语句的"and"全部换成"逗号"!
例如 update table set A = "a" and B = "b" where id = 1 (报错)
改成 update table set A = "a" , B= "b" where id = 1 (正确)
唉,我被坑了起码半个小时,换了不知道多少种update的sql语句,连JdbcSimpleTemplate都用上了,最后居然是and的问题!!好烦,但是问题终于解决了,也是很开心的。
你看我都这么努力的分享知识给你了,鼓励一下又何妨O(∩_∩)O