Mybatis批量删除数据操作⽅法
MyBatis的作⽤我想不⽤多说,今天说说MyBatis中的批量删除操作。废话不多说,先给⼤家⼀段代码⽚段!
<delete id="deleteByStandardIds">
delete in
delete from t_standard_catalog where standard_id in
<foreach collection="array" item="standardId" open="(" close=")" separator=",">
#{standardId,jdbcType=INTEGER}
</foreach></delete>或者 <delete id="deleteByStandardIds" parameterType="java.util.List">
delete from t_standard_catalog where standard_id in
<foreach collection="list" item="standardId" open="(" close=")" separator=",">
#{standardId,jdbcType=INTEGER}
</foreach>
</delete>
foreach元素的属性主要有 item,index,collection,open,separator,close。
item表⽰集合中每⼀个元素进⾏迭代时的别名. (直接到对应的delList集合⾥⾯的所有元素,item="item"中的item(后⼀个)必须与#{item} 中的item⼀致)
index指定⼀个名字,⽤于表⽰在迭代过程中,每次迭代到的位置.
open表⽰该语句以什么开始,separator表⽰在每次进⾏迭代之间以什么符号作为分隔符.
close表⽰以什么结束.
以上所述是⼩编给⼤家介绍的Mybatis批量删除数据操作⽅法,希望对⼤家有所帮助,如果⼤家有任何疑问请给我留⾔,⼩编会及时回复⼤家的。在此也⾮常感谢⼤家对⽹站的⽀持!

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。