sql中foreach标签的使用

sql中foreach标签的使用
(学习笔记,欢迎指导!)

foreach标签主要用于构建in条件,他可以在sql中对集合进行迭代。
解析:
collection :collection属性的值有三个分别是list、array、map三种,分别对应的参数类型为:List、数组、map集合,我在上面传的参数为数组,所以值为array

item : 表示在迭代过程中每一个元素的别名

index :表示在迭代过程中每次迭代到的位置(下标)

open :前缀

close :后缀

separator :分隔符,表示迭代时每个元素之间以什么分隔

示例如下:

<insert id="insertList">
      INSERT INTO
      "BIZ_PLATFORM_USER"."DEVICE_OPERATION_TEAM"(
      <include refid="BaseSql"/>
      )
      VALUES
      <foreach collection="list" item="item" index="index" separator=",">
        (
        #{item.name,jdbcType=VARCHAR},
        #{item.md5,jdbcType=VARCHAR},
        #{item.post,jdbcType=VARCHAR},
        #{item.brief,jdbcType=VARCHAR},
        #{item.deviceUuid,jdbcType=VARCHAR},
        #{item.createBy,jdbcType=VARCHAR},
        #{item.updateBy,jdbcType=VARCHAR},
        #{item.createTime,jdbcType=TIMESTAMP},
        #{item.updateTime,jdbcType=TIMESTAMP}
        )
      </foreach>
    </insert>

或:

<select id="selectByFolderId" parameterType="list" resultMap="docManagerMap">
 
    select d.* from doc_manager d left join folder_doc fd on fd.doc_id = d.id where fd.folder_id in
    <foreach collection="list" item="folderId" index="index" open="(" close=")" separator=",">
        #{folderId}
    </foreach>
    
</select>