【mybatis解决oracle查询in超过1000条数据】

1、因为代码中前人未考虑in 数据可能大于1000,导致现在系统报错,MPP low前人

直接上sql

复制代码
select * from table a
<where>
	<if test="list != null and list.size > 0">
		and a.name in
		<foreach collection="list" index="index" item="item" open="(" separator="," close=")">
			<if test="(index % 999) == 998">  ) or a.name in (</if> #{item}
		</foreach >
	</if>
</where>
相关推荐
百***49001 天前
SQL Server查看数据库中每张表的数据量和总数据量
数据库·sql·oracle
代码or搬砖1 天前
MyBatisPlus中的常用注解
数据库·oracle·mybatis
盼哥PyAI实验室1 天前
MySQL 数据库入门第一课:安装、账户、库、表与数据操作详解
数据库·mysql
h***59331 天前
MySQL如何执行.sql 文件:详细教学指南
数据库·mysql
郑重其事,鹏程万里1 天前
键值存储数据库(chronicle-map)
数据库·oracle
Doro再努力1 天前
【MySQL数据库09】外键约束与多表查询基础
数据库·mysql
gkhost1 天前
Linux基础——Oracle部署
oracle·表空间··instances
ss2731 天前
019:深入解析可重入互斥锁:原理、实现与线程安全实践
java·数据库·redis
高级程序源1 天前
springboot社区医疗中心预约挂号平台app-计算机毕业设计源码16750
java·vue.js·spring boot·mysql·spring·maven·mybatis
O***Z6161 天前
三分钟内快速完成MySQL到达梦数据库的迁移
数据库·mysql