美文网首页
MyBatis-plus sql语句中 in的使用

MyBatis-plus sql语句中 in的使用

作者: AC编程 | 来源:发表于2021-10-15 16:40 被阅读0次

    一、参数为List类型

     <delete id="physicalDeleteBatchIds">
            delete from cart_item
            where id in
            <foreach collection="batchIds.ids"  item="cid" open="(" separator="," close=")">
                #{cid}
            </foreach>
    </delete>
    

    二、参数为字符串类型,且用,号分割

    <delete id="physicalDeleteBatchIds">
            delete from cart_item
            where id in (#{batchIds.ids})
    </delete>
    

    相关文章

      网友评论

          本文标题:MyBatis-plus sql语句中 in的使用

          本文链接:https://www.haomeiwen.com/subject/tapmoltx.html