update zendtao_new.customcalendarinfo a
<set>
<if test="pdu != null">
a.pduname = #{pdu,jdbcType=VARCHAR},
</if>
<if test="name != null">
a.name = #{name,jdbcType=VARCHAR},
</if>
<if test="start != null">
a.start = #{start,jdbcType=VARCHAR},
</if>
<if test="end != null">
a.end = #{end,jdbcType=VARCHAR},
</if>
<if test="title != null">
a.title = #{title,jdbcType=VARCHAR},
</if>
<if test="url != null">
a.url = #{url,jdbcType=VARCHAR},
</if>
<if test="env != null">
a.env = #{env,jdbcType=VARCHAR},
</if>
</set>
where
a.relativeguid = #{guid,jdbcType=VARCHAR}
and
a.name like CONCAT('%',#{symbol,jdbcType=VARCHAR},'%')
Mybatis update时判断为空的写法和like的写法
最新推荐文章于 2025-09-09 15:06:15 发布
本文介绍了一个使用MyBatis动态SQL进行更新操作的例子,展示了如何根据不同的条件更新customcalendarinfo表中的多个字段,如pduname、name、start等。
1813

被折叠的 条评论
为什么被折叠?



