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遍历的主要内容,如果未能解决你的问题,请参考以下文章