mybatis数组和List遍历

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis数组和List遍历相关的知识,希望对你有一定的参考价值。

参考技术A <update id="updatadeptarea" >

    update sys_dept set area =#addinsertid

where dept_id in

<foreach collection="areadetps" item="item" index="index"

            separator="," open="(" close=")">

        #item

</update> 

数组

    update sys_dept set area =#addinsertid

where dept_id in

<foreach collection="areadetps" item="item" index="index"

            separator="," open="(" close=")">

        #item.deptid

</update> 

mybatis判断数组为空或null

参考技术A <if test="array !=null and array.length > 0">

以上是关于mybatis数组和List遍历的主要内容,如果未能解决你的问题,请参考以下文章

mybatis中判断foreach循环最后一个

mybatis like 转义,遍历List

mybatis like 转义,遍历List

Mybatis遍历查询 ——foreach

mybatis 集合、数组类型参数语法

MyBatis 遍历数组放入in中