<delete id="deleteList">
delete from ssm_monitor WHERE (ObjId, tm) IN
<foreach item="item" index="index" collection="list" open="(" separator="," close=")">
(#{item.objid}, #{item.tm})
</foreach>
</delete>
mybatis多字段删除
最新推荐文章于 2024-06-02 10:02:57 发布
本文描述了在SSMMonitor中,通过foreach遍历列表并执行删除操作,针对ObjId和tm值进行SQL语句的构建和执行的过程。
摘要由CSDN通过智能技术生成