zoukankan      html  css  js  c++  java
  • Mybatis中的update动态SQL语句 <trim></trim> 用法

    Mybatis Mapper中文件中

    update时,需要set设置多个字段,有时逗号处理时,会报错误,所以会使用到<trim></trim>

    使用trim就是为了删掉最后字段的“,”。
    主要不用单独写SET了,因为set被包含在trim中了:

    <update id="update" parameterType="com.entity.Entity">
            <trim prefix="set" suffixOverrides=",">
                <if test="isPublish!=null">
                    is_publish = #{isPublish},
                </if>
            </trim>
            WHERE id = #{id}
    </update>     
  • 相关阅读:
    数据库 mysql 语句
    document对象
    javascript
    css样式表及属性
    css格式布局
    html 标签
    html 标签
    第四章
    第三章
    第二章
  • 原文地址:https://www.cnblogs.com/kaishi/p/7593852.html
Copyright © 2011-2022 走看看