2019/12/6 学习笔记
ssm 更新数据库出错
在写课设的时候发现更新操作报sql运行错误,以为是sql语句写错了,但是仔细检查了,没有发现错误,最好看了mapping文件,发现和别人的写法有些不同
我的写法`
<update id="update">
UPDATE buy_car
<SET
uid=#{uid},
bid=#{bid},
num=#{num},
SET
WHERE
id=#{id}
</update>`
正确写法
<update id="update">
UPDATE buy_car
<set>
uid=#{uid},
bid=#{bid},
num=#{num},
</set>
<where>
id=#{id}
</where>
</update>
应该是mabitis规定了相关写法