首页 > 代码库 > mybatis update set 多个字段
mybatis update set 多个字段
<update id="updateCustomer" parameterType="com.entrym.domain.Customer"> UPDATE customer set <if test="name!=null">name=#{name,jdbcType=VARCHAR},</if> <if test="role!=null">role=#{role,jdbcType=VARCHAR},</if> <if test="userId != null">user_id = #{userId,jdbcType=INTEGER},</if> <if test="qq != null">qq = #{qq,jdbcType=VARCHAR},</if> <if test="mobile != null">mobile = #{mobile,jdbcType=VARCHAR}</if> WHERE id =#{id,jdbcType=BIGINT}
如果上面的mobile字段为null,执行下面的SQL语句
UPDATE customer set name=?,role=?,userId=?,qq=?, where id=?
where 前面有逗号“,”就会报错
使用trim可以删掉最后字段的逗号“,”
set已被包含在trim中,所以不用重复写了:
<update id="updateCustomer" parameterType="com.entrym.domain.Customer"> UPDATE customer <trim prefix="set" suffixOverrides=","> <if test="claimTime!=null">claim_time=#{claimTime,jdbcType=VARCHAR},</if> <if test="claimState!=null">claim_state=#{claimState,jdbcType=INTEGER},</if> <if test="name!=null">name=#{name,jdbcType=VARCHAR},</if> <if test="role!=null">role=#{role,jdbcType=VARCHAR},</if> <if test="platformAccount!=null">platform_account=#{platformAccount,jdbcType=VARCHAR},</if> <if test="collaborateTime!=null">collaborate_time=#{collaborateTime,jdbcType=VARCHAR},</if> <if test="collaborateState!=null">collaborate_state=#{collaborateState,jdbcType=INTEGER},</if> <if test="userId != null">user_id = #{userId,jdbcType=INTEGER},</if> <if test="qq != null">qq = #{qq,jdbcType=VARCHAR},</if> <if test="mobile != null">mobile = #{mobile,jdbcType=VARCHAR}</if> </trim> WHERE id =#{id,jdbcType=BIGINT} </update>
mybatis update set 多个字段
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。