delete from xxx_table where id in
<foreach collection"list" item"item" index"index" open"(" separator"," close")"> #{item}
</foreach> > (1,2,3,4)
foreach标签:主要应用…
参考:foreach 实现 MyBatis 遍历集合与批量操作数据_点滴记录-CSDN博客_mybatis遍历list SELECT * FROM t_employee WHERE id IN (1, 2, 3, ...) /** 根据传入的 id 集合,查询出对应的员工信息,并使用集合保存信息 */ List<Employee> …