Mybatis中updateByPrimaryKeySelective和updateByPrimaryKey区别

本文详细解析了SpringBoot结合MyBatis时,updateByPrimaryKeySelective与updateByPrimaryKey两个更新方法的区别。前者智能更新非空字段,适用于部分字段更新场景;后者则更新所有字段,适合全字段更新需求。同时,文章对比了insert与insertSelective的相似原理。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

       最近用到Springboot,配置了mybatis,在数据更新的时候忘了updateByPrimaryKeySelective和updateByPrimaryKey区别,在网上搜了一下,记录下来让自己加强记忆。

方法:

int updateByPrimaryKeySelective(User user);
int updateByPrimaryKey(User user);


对应的xml为:

<update id="updateByPrimaryKeySelective" parameterType="com.pingua.model.User">
update tb_user
<set>
<if test="name != null">
name= #{name,jdbcType=VARCHAR},
</if>
<if test="age != null">
age= #{age,jdbcType=INTEGER},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
<update id="updateByPrimaryKey" parameterType="com.pingua.model.User">
update tb_user
set name = #{name,jdbcType=VARCHAR},age = #{age,jdbcType=INTEGER},
where id = #{id,jdbcType=INTEGER}
</update>

updateByPrimaryKeySelective会先对字段进行判断再更新(如果为Null就忽略更新),如果你只想更新某一字段,可以用这个方法。

updateByPrimaryKey对你注入的字段全部更新

同时insert()方法和insertSelective()也是一样的原理

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值