如下代码
<insert id="insert" parameterType="HashMap">
INSERT INTO tb_user
SET
<if test="tel!=null">
tel = #{tel},
</if>
<if test="email!=null">
email=#{email},
</if>
</insert>
如果email!=null则会有sql语句
INSERT INTO tb_user SET tel = #{tel},email=#{email},
对于末尾的逗号应该怎么设计去除
登录后可查看更多问答,登录/注册