分享的mybatis的常用的技巧之一,记录一下,方便下次忘记之后查找,好记性不如烂笔头。
我们可能在业务中会遇到增加一条记录,如果改记录存在的话,就更新里面的一些字段,如果没有则查询
1,增加唯一的约束(如果不是通过id)
代码语言:javascript复制alter table realtime_inventory add unique(sku,store_id);
//建立唯一的约束,通过这个判断是否存在
2,如果需要对修改的字段进行自增
num = #{num} num //在mybatis中需要自增时的写法
最后看一段mybatis的代码
代码语言:javascript复制<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>
这么简单就搞定了!
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/111231.html原文链接:https://javaforall.cn