求教:mybatis3动态更新sql使用trim+if方式,更新不成功
动态sql如下:
<update id="updateCoverFront" parameterType="com.iflytek.ichang.dc.domain.cover.Cover">
update Cover
<trim prefix="SET" suffixOverrides=",">
<if test="coverfrontid != null and coverfrontid != ''">
CoverFrontID=#{coverfrontid},
</if>
<if test="playstyleid != null and playstyleid != ''">
PlayStyleID=#{playstyleid}
</if>
</trim>
where CoverID=#{coverid}
</update>
运行程序执行上述动态SQL更新不成功,但是没报错。烦请各位帮我看看使用trim+if方式组装动态sql,像上面这样写有没有问题,请指点!谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
谢谢!此问题已解决!
通过log把SQL打印出来分析分析