com.mysql.jdbc.MysqlDataTruncation: Data truncation: Truncated incorrect DOUBLE

she_smiled發表於2017-11-11

提示的原因是“ xxx  ”double型不是正確的,錯誤的原因在於把資料庫

update user  set username='xxx',password='yyy' where id='zzz'

錯寫成

update user  set username='xxx' and password='yyy' where id='zzz'

將分隔符,錯寫為and

如果是用ssm框架的話,正確的寫法應該是:

<update id="updateUser" parameterType="user">
        update sys_user
        <set >
            <if test="user_name!=null">
            user_name=#{user_name} ,
            </if>
            <if test="user_password!=null">
            user_password=#{user_password},
            </if>
        </set>
        where user_id=#{user_id}
    </update>



相關文章