分享的mybatis的常用的技巧之一,记录一下,方便下次忘记之后查找,好记性不如烂笔头。
我们可能在业务中会遇到增加一条记录,如果改记录存在的话,就更新里面的一些字段,如果没有则查询
1,增加唯一的约束(如果不是通过id)
alter table realtime_inventory add unique(sku,store_id);
//建立唯一的约束,通过这个判断是否存在
2,如果需要对修改的字段进行自增
num = #{num}+num //在mybatis中需要自增时的写法
最后看一段mybatis的代码
<insert id="saveRealTimeInventory" parameterType="RealTimeInventory">
insert into realtime_inventory
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="sku!=null">
sku,
</if>
<if test="num!=null">
num,
</if>
<if test="storeId!=null and storeId > 0">
store_id,
</if>
<if test="updateTime!=null">
update_time,
</if>
</trim>
<trim prefix="values(" suffix=")" suffixOverrides=",">
<if test="sku!=null">
#{sku},
</if>
<if test="num!=null">
#{num},
</if>
<if test="storeId!=null and storeId > 0">
#{storeId},
</if>
<if test="updateTime!=null">
#{updateTime},
</if>
</trim>
ON DUPLICATE KEY UPDATE
num = #{num}+num
</insert>
这么简单就搞定了!
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/111231.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...