欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

MyBatis更新语句

程序员文章站 2022-06-01 17:07:04
...

MyBatis更新语句

<update id="updateArea" parameterType="com.example.applet.entity.Area" >
    update  tb_area
    <set>
        <if test="areaName!=null">area_name=#{areaName},</if>
        <if test="priority!=null">priority=#{priority},</if>
        <if test="lastEditTime!=null">last_edit_time=#{lastEditTime}</if>
    </set>
    where  area_id=#{areaId}
</update>