sql中,以list的元素为参数,遍历查询
Posted 史努比1000
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql中,以list的元素为参数,遍历查询相关的知识,希望对你有一定的参考价值。
1、<foreach>中有几个主要的参数,其含义如下:
item表示集合中每一个元素进行迭代时的别名,
index指 定一个名字,用于表示在迭代过程中,每次迭代到的位置,
open表示该语句以什么开始,
separator表示在每次进行迭代之间以什么符号作为分隔 符,
close表示以什么结束。
2、collection属性
在使用foreach的时候最关键的也是最容易出错的就是collection属性,该属性是必须指定的,但是在不同情况 下,该属性的值是不一样的,主要有一下3种情况:
1. 如果传入的是单参数且参数类型是一个List的时候,collection属性值为list
2. 如果传入的是单参数且参数类型是一个array数组的时候,collection的属性值为array
3. 如果传入的参数是多个的时候,我们就需要把它们封装成一个Map了,当然单参数也可
以封装成map,实际上如果你在传入参数的时候,在breast里面也是会把它封装成一个Map的,map的key就是参数名,所以这个时候collection属性值就是传入的List或array对象在自己封装的map里面的key 下面分别来看看上述三种情况的示例代码:
1.单参数List的类型
上述collection的值为list,对应的Mapper是这样的
public List dynamicForeachTest(List ids);
2.单参数array数组的类型
上述collection为array,对应的Mapper代码:
public List dynamicForeach2Test(int[] ids);
3.自己把参数封装成Map的类型
上述collection的值为ids,是传入的参数Map的key,对应的Mapper代码:
public List dynamicForeach3Test(Map params);
3、以下是list类型的查询示例:
service层代码:
public String getID(List<String> list)
List<String> name= getMapper.getID(list);
System.out.println(name.size());
return name.get(0).toString();
list中的元素:
List<String > list = new ArrayList<>();
list.add("zhangsan");
list.add("lisi");
mybatis中编写遍历list元素,作为sql的查询条件,使用<foreach>函数。
<select id="getID" resultType="java.lang.String">
select name
from user_info
where name in(
<foreach collection="list" index="index" item="item" separator=",">
#item
</foreach>
)
</select>
Mybatis查询实例,sql中的in在Mybatis中怎么写--以list为查询条件
在service中把参数放到HashMap中 List<String> list = new ArrayList<String>(); list.add("x"); list.add("y"); list.add("z"); String s = "A" Date d = new Date(); HashMap<String,Object> param = new HashMap<String,Object>(); param.put("list",list); param.put("s",s); param.put("d",d); XXXDao.queryXXX(param); 在Mybatis的Mapper中是这么写: <select id = "queryXXX",resultType = "XXX", paramterType = "java.lang.HashMap"> select * from tab where zi_duan1 = #{s} and zi_duan2 = #{d} and zi_duan3 in <foreach item="item" index="index" collection="list" open="(" separator="," close=")"> #{item} </foreach> </select>
在service中把参数放到HashMap中
List<String> list = new ArrayList<String>();
list.add("x");
list.add("y");
list.add("z");
String s = "A"
Date d = new Date();
HashMap<String,Object> param = new HashMap<String,Object>();
param.put("list",list);
param.put("s",s);
param.put("d",d);
XXXDao.queryXXX(param);
在Mybatis的Mapper中是这么写:
<select id = "queryXXX",resultType = "XXX", paramterType = "java.lang.HashMap">
select * from tab where zi_duan1 = #{s} and zi_duan2 = #{d}
and zi_duan3 in
<foreach item="item" index="index" collection="list" open="("
separator="," close=")">
#{item}
</foreach>
</select>
以上是关于sql中,以list的元素为参数,遍历查询的主要内容,如果未能解决你的问题,请参考以下文章
[mybatis]动态sql_foreach_遍历集合&批量插入