..._mybatis set标签">
当前位置:   article > 正文

Mybatis的set标签_mybatis set标签

mybatis set标签

1、set标签特点:

(1)set标签用于更新语句中
(2)set标签解析为set关键字
(3)set可以去除跟新语句中无用的逗号
(4)通常是和if标签一起使用

2、set标签的使用

(1)编写接口方法

/**
     * 更新user
     * @param user
     */
   int updateUserById(User user);

(2)编写sql语句

<update id="updateUserById" parameterType="user">
     update user
     <set>
         <if test="uid!=null">
           uid=#{uid},
         </if>
         <if test="uname!=null and uname!=''">
             uname=#{uname},
         </if>
         <if test="sex!=null and sex!=''">
             sex=#{sex},
         </if>
         <if test="password!=null and password!=''">
             password=#{password},
 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/855335
推荐阅读
相关标签
  

闽ICP备14008679号