编码技巧——批量删除数据

1. 背景

今天遇到个业务场景需要批量根据索引删除数据,ORM框架为mybatis,跟以往遇到的根据MySQL主键批量删除不同,本次使用的数据库时PgSQL,使用的联合主键索引;搜索相关资料网上大部分帖子都是使用类似 where id in (...) 的写法,直到找到花了点时间才找到合适的写法,现在总结下;

2. 代码

(1)对于单列主键一般使用IN语句

XML 复制代码
    <delete id="batchDelByIds" parameterType="list">
        delete
        from t_data
        where id in
        <foreach collection="list" item="batchId" index="index" open="(" close=")" separator=",">
            #{batchId}
        </foreach>
    </delete>

(2)使用OR语句连接多个条件

XML 复制代码
    <delete id="batchDelByNameAgeEntrys" parameterType="list">
        delete
        from t_data
        where
        <foreach collection="list" item="item" index="index" separator=" or ">
            (`name`={#item.name,VARCHAR} and `age`={#item.age,INTEGER})
        </foreach>
    </delete>

(3)使用多条DELETE语句执行

XML 复制代码
    <delete id="batchDelByNameAgeEntrysV2" parameterType="list">
        <foreach collection="list" item="item" index="index" separator=";">
            delete
            from t_data
            where
            `name`={#item.name,VARCHAR} and `age`={#item.age,INTEGER}
        </foreach>
    </delete>

注意,这种写法需要sql连接支持多条语句执行,需要在jdbc.url上加上多语句命令的参数,例如:

Lua 复制代码
spring.datasource.url=jdbc:mysql://127.0.0.1:11070/test?useUnicode=true&amp;characterEncoding=UTF-8&amp;allowMultiQueries=true

(4)使用多参数的IN语句

XML 复制代码
    <delete id="batchDelByIds" parameterType="list">
        delete
        from t_data
        where (`name`, `age`) in
        <foreach collection="list" item="item" index="index" open="(" close=")" separator=",">
            ({#item.name,VARCHAR}, {#item.age,INTEGER})
        </foreach>
    </delete>

本次的场景就适合这种写法;注意,如果多字段非联合索引,建议新建联合索引;

以上,希望你能帮到你;

相关推荐
Frank牛蛙7 小时前
1.每日SQL----2024/11/7
数据库·sql
上海_彭彭7 小时前
【提效工具开发】Python功能模块执行和 SQL 执行 需求整理
开发语言·python·sql·测试工具·element
成富12 小时前
文本转SQL(Text-to-SQL),场景介绍与 Spring AI 实现
数据库·人工智能·sql·spring·oracle
songqq2712 小时前
SQL题:使用hive查询各类型专利top 10申请人,以及对应的专利申请数
数据库·sql
鹿屿二向箔13 小时前
基于SSM(Spring + Spring MVC + MyBatis)框架的汽车租赁共享平台系统
spring·mvc·mybatis
时差95315 小时前
【面试题】Hive 查询:如何查找用户连续三天登录的记录
大数据·数据库·hive·sql·面试·database
Mephisto.java15 小时前
【大数据学习 | kafka高级部分】kafka的优化参数整理
大数据·sql·oracle·kafka·json·database
山海青风16 小时前
第七篇: BigQuery中的复杂SQL查询
sql·googlecloud
沐雪架构师16 小时前
mybatis连接PGSQL中对于json和jsonb的处理
json·mybatis