Mybatis 的 foreach 批量模糊 like 查询及批量插入
Posted 傲慢的上校
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis 的 foreach 批量模糊 like 查询及批量插入相关的知识,希望对你有一定的参考价值。
使用 mybatis 平时都是用遍历集合 in ( ) …,其实还可以多模糊查询和批量操作等其他操作,要明白 foreach 元素的属性主要意义,灵活使用,举例如下。
1、根据多个品牌名字分类,模糊搜索数据,主要利用 separator=“or” 这个属性拼接 sql
<!-- 利用foreach根据多个品牌名字分类,模糊搜索数据 -->
<select id="listGoodBrand" resultMap="goodsMap">
SELECT id,name,type FROM goods_brand WHERE delete_flag=0 and
<foreach collection="goodList" item="item" index="index" open="(" separator="or" close=")">
name LIKE CONCAT('%',#item,'%')
</foreach>
order by id desc
</select>
2、批量插入角色菜单关系,利用 foreach 遍历参数拼接 sql
<!-- 批量插入角色菜单关系 -->
<insert id="batchSave">
INSERT INTO dhz_role_menu(role_id,menu_id,create_time)
values
<foreach item="item" index="index" collection="list" separator=",">
(#item.roleId,#item.menuId,now())
</foreach>
</insert>
挺关键的
separator=“or” 这个属性拼接 sql
以上是关于Mybatis 的 foreach 批量模糊 like 查询及批量插入的主要内容,如果未能解决你的问题,请参考以下文章
Mybatis 的 foreach 批量模糊 like 查询及批量插入
Mybatis 的 foreach 批量模糊 like 查询及批量插入