mybatis <where>标签别勿用,否则线上清表

公司线上发送了清表现象,排除发现:

 <delete id="scMxdxxxb">
        DELETE TABLE
        <where>
            <foreach collection="id" item="item" index="index" open="" separator="OR" close="">
                id = #{item}
            </foreach>
        </where>
 </delete>

  

 
原文地址:https://www.cnblogs.com/kzd666/p/11412881.html