时间:2021-07-01 10:21:17 帮助过:94人阅读
<update id="updateOne" parameterType="com.inspur.search.data.EntityRelation"> UPDATE ENTITY_RELATION <trim prefix="set" suffixOverrides=","> <if test="srcId!=null">SRC_ID=#{srcId},</if> <if test="srcType!=null">SRC_TYPE=#{srcType},</if> <if test="destId!=null">DEST_ID=#{destId},</if> <if test="destType!=null">DEST_TYPE=#{destType},</if> <if test="relType!=null">REL_TYPE=#{relType},</if> <if test="status!=null">STATUS=#{status},</if> <if test="snId!=null">SN_ID=#{snId},</if> </trim> WHERE id=#{id} </update>
使用trim就是为了删掉最后字段的“,”。主要不用单独写SET了,因为set被包含在trim中了
Mybatis中update一个实体的动态sql
标签:parameter _id over src entity status 一个 删掉 where