在sql中的foreach的使用

在sql中foreach的作用

也就是遍历迭代,在SQL中通常用在 in 这个关键词的后面

foreach元素的属性主要有 item,index,collection,open,separator,close。

分别代表:

在使用foreach的时候最关键的也是最容易出错的就是collection属性,该属性是必须指定的,但是在不同情况 下,该属性的值是不一样的,主要有一下3种情况:

1. 如果传入的是单参数且参数类型是一个List的时候,collection属性值为list
2. 如果传入的是单参数且参数类型是一个array数组的时候,collection的属性值为array
3. 如果传入的参数是多个的时候,我们就需要把它们封装成一个Map了,当然单参数也可

item表示集合中每一个元素进行迭代时的别名,
index用于表示在迭代过程中,每次迭代到的位置,
open表示该语句以什么开始,
separator表示在每次进行迭代之间以什么符号作为分隔 符,
close表示以什么结束

以封装成map,实际上如果你在传入参数的时候,在breast里面也是会把它封装成一个Map的,map的key就是参数名,所以这个时候collection属性值就是传入的List或array对象在自己封装的map里面的key 下面分别来看看上述三种情况的示例代码:

代码片段:


1. 传入的参数为list的时候

对应的Dao中的Mapper文件是:

public List selectByIds(List ids);

xml文件代码片段:

这个sql的意思就是根据动态的id进行查询,并且以‘( ‘ 开始,以 ’ )‘结束,以‘ ,‘ 间隔,如果#{item}没有写具体数值,那么就是动态的参数;

<select id="selectByIds" resultType="com.txw.pojo.User">
        select * from user where id in
        <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
            #{item}
        </foreach>
</select>

在sql中的foreach的使用_第1张图片

2. 传入的参数为Array的时候

对应的Dao中的Mapper文件是:

public List selectByIds(int[] ids);

xml文件代码片段:

<select id="selectByIds" resultType="com.txw.pojo.User">
        select * from user where id in
        <foreach collection="array" index="index" item="item" open="(" separator="," close=")">
            #{item}
        </foreach>
    </select>

3. 传入的参数为Map的时候

对应的Dao中的Mapper文件是:
public List selectByIds(Map params);

xml文件代码片段:

<select id="selectByIds" resultType="com.txw.pojo.User">
        select * from user where  id in
        <foreach collection="ids" index="index" item="item" open="(" separator="," close=")">
            #{item}
        </foreach>
    </select>

map的时候需要注意的是:collection的值“ids”是存储在map中的key(比如:map.put(“ids”,ids));尤其需要注意;

详见相关链接:foreach的链接

你可能感兴趣的:(sql,数据库,database)