updateByExample 與 updateByExampleSelective 的區別

結論:

  • updateByExample
    對注入的字段全部更新,如果更新的字段爲null,則字段更新爲null !
  • updateByExampleSelective
    對字段進行判斷再更新,更新字段 不爲 null 的屬性值,如果更新的字段爲null,則不更新該字段,即字段還是原來的值

分析:
xml文件中的updateByExample:

<update id="updateByExample" parameterType="map">
    update USER
    set ID = #{record.id,jdbcType=BIGINT},
      ACCOUNT_ID = #{record.accountId,jdbcType=VARCHAR},
      NAME = #{record.name,jdbcType=VARCHAR}
    <if test="_parameter != null">
      <include refid="Update_By_Example_Where_Clause" />
    </if>
  </update>

xml文件中的updateByExampleSelective:

<update id="updateByExampleSelective" parameterType="map">
    update USER
    <set>
      <if test="record.id != null">
        ID = #{record.id,jdbcType=BIGINT},
      </if>
      <if test="record.accountId != null">
        ACCOUNT_ID = #{record.accountId,jdbcType=VARCHAR},
      </if>
      <if test="record.name != null">
        NAME = #{record.name,jdbcType=VARCHAR},
      </if>
    </set>
    <if test="_parameter != null">
      <include refid="Update_By_Example_Where_Clause" />
    </if>
  </update>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章