Mybatis中updateByPrimaryKeySelective和updateByPrimaryKey区别

  • int updateByPrimaryKeySelective(TbItem record);
  • int updateByPrimaryKey(TbItem record);

上面的是逆转工程生成的Mapper接口

对应的xml为

update tb_item
title = #{title,jdbcType=VARCHAR},
where id = #{id,jdbcType=BIGINT}
update tb_item
set title = #{title,jdbcType=VARCHAR},
where id = #{id,jdbcType=BIGINT}

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

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


你可能感兴趣的:(mybatis,mybatis)