日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

MyBatis根据数组、集合查询

發布時間:2025/4/16 26 豆豆
生活随笔 收集整理的這篇文章主要介紹了 MyBatis根据数组、集合查询 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
foreach的主要用在構建in條件中,它可以在SQL語句中進行迭代一個集合。foreach元素的屬性主要有item,index,collection,open,separator,close。item表示集合中每一個元素進行迭代時的別名,index指定一個名字,用于表示在迭代過程中,每次迭代到的位置,open表示該語句以什么開始,separator表示在每次進行迭代之間以什么符號作為分隔符,close表示以什么結束,在使用foreach的時候最關鍵的也是最容易出錯的就是collection屬性,該屬性是必須指定的,但是在不同情況下,該屬性的值是不一樣的,主要有一下3種情況:?
  • 如果傳入的是單參數且參數類型是一個List的時候,collection屬性值為list .
  • 如果傳入的是單參數且參數類型是一個array數組的時候,collection的屬性值為array .
  • 如果傳入的參數是多個的時候,我們就需要把它們封裝成一個Map了,當然單參數也可以封裝成map,實際上如果你在傳入參數的時候,在MyBatis里面也是會把它封裝成一個Map的,map的key就是參數名,所以這個時候collection屬性值就是傳入的List或array對象在自己封裝的map里面的key.
  • 下面我們通過代碼實踐:
    ??? <!--List:forech中的collection屬性類型是List,collection的值必須是:list,item的值可以隨意,Dao接口中參數名字隨意 -->
    ??? <select id="getEmployeesListParams" resultType="Employees">
    ??????? select *
    ??????? from EMPLOYEES e
    ??????? where e.EMPLOYEE_ID in
    ??????? <foreach collection="list" item="employeeId" index="index"
    ??????????? open="(" close=")" separator=",">
    ??????????? #{employeeId}
    ??????? </foreach>
    ??? </select>

    ??? <!--Array:forech中的collection屬性類型是array,collection的值必須是:list,item的值可以隨意,Dao接口中參數名字隨意 -->
    ??? <select id="getEmployeesArrayParams" resultType="Employees">
    ??????? select *
    ??????? from EMPLOYEES e
    ??????? where e.EMPLOYEE_ID in
    ??????? <foreach collection="array" item="employeeId" index="index"
    ??????????? open="(" close=")" separator=",">
    ??????????? #{employeeId}
    ??????? </foreach>
    ??? </select>

    ??? <!--Map:不單單forech中的collection屬性是map.key,其它所有屬性都是map.key,比如下面的departmentId -->
    ??? <select id="getEmployeesMapParams" resultType="Employees">
    ??????? select *
    ??????? from EMPLOYEES e
    ??????? <where>
    ??????????? <if test="departmentId!=null and departmentId!=''">
    ??????????????? e.DEPARTMENT_ID=#{departmentId}
    ??????????? </if>
    ??????????? <if test="employeeIdsArray!=null and employeeIdsArray.length!=0">
    ??????????????? AND e.EMPLOYEE_ID in
    ??????????????? <foreach collection="employeeIdsArray" item="employeeId"
    ??????????????????? index="index" open="(" close=")" separator=",">
    ??????????????????? #{employeeId}
    ??????????????? </foreach>
    ??????????? </if>
    ??????? </where>
    ??? </select>

    Mapper類:
    public interface EmployeesMapper {?

    ??? List<Employees> getEmployeesListParams(List<String> employeeIds);

    ??? List<Employees> getEmployeesArrayParams(String[] employeeIds);

    ??? List<Employees> getEmployeesMapParams(Map<String,Object> params);
    }


    根據數組批量查詢

    List<Privilege> selectPrivilegeByIds(@Param("privilegeIds") Integer[] privilegeIds);

    <select id="selectPrivilegeByIds" resultMap="BaseResultMap" >
    select
    <include refid="Base_Column_List" />
    from diary_privilege
    where id in
    <foreach collection="array" item="item" index="index" open="(" separator="," close=")">
    #{item}
    </foreach>
    </select>
    根據集合插入批量插入

    int insertEmployeeRole(EmployeeRoleVo employeeRole);(EmployeeRoleVo中包含List<Role> roleList ? <insert id="insertEmployeeRole" parameterType="com.jimmy.demo.vo.EmployeeRoleVo" >
    insert into diary_employee_role (employeeId,roleId)
    values
    <foreach collection="roleList" item="item" index="index" separator="," >
    (#{employee.eid},#{item.id})
    </foreach>
    </insert>



    轉載于:https://www.cnblogs.com/jimmy-muyuan/p/5467252.html

    總結

    以上是生活随笔為你收集整理的MyBatis根据数组、集合查询的全部內容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。