MyBatis案例:修改动态字段

MyBatis案例:修改动态字段

<!--SQL映射文件中的部分代码,多条件查询语句的配置-->
<!--动态修改字段-->
 <update id="update">
        update tb_brand
        <set>
            <if test="brandName != null and brandName != ''">
                brand_name = #{brandName},
            </if>
            <if test="companyName != null and companyName != ''">
                company_name = #{companyName},
            </if>
            <if test="ordered != null">
                ordered = #{ordered},
            </if>
            <if test="description != null and description != ''">
                description = #{description},
            </if>
            <if test="status != null">
                status = #{status}
            </if>
        </set>
        where
        id = #{id};
    </update>