..._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},
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。