博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
处理 Oracle SQL in 超过1000 的解决方案
阅读量:6156 次
发布时间:2019-06-21

本文共 1432 字,大约阅读时间需要 4 分钟。

转载:

处理oracle sql 语句in子句中(where id in (1, 2, ..., 1000, 1001)),如果子句中超过1000项就会报错。

这主要是oracle考虑性能问题做的限制。如果要解决次问题,可以用 where id (1, 2, ..., 1000) or id (1001, ...)

/** * function: 处理oracle sql 语句in子句中(where id in (1, 2, ..., 1000, 1001)), * 如果子句中超过1000项就会报错。 * 这主要是oracle考虑性能问题做的限制。 * 如果要解决次问题,可以用 where id (1, 2, ..., 1000) or id (1001, ...) * @author hoojo * @createDate 2012-8-31 下午02:36:03 * @param ids in语句中的集合对象 * @param count in语句中出现的条件个数 * @param field in语句对应的数据库查询字段 * @return 返回 field in (...) or field in (...) 字符串 */private String getOracleSQLIn(List
ids, int count, String field) { count = Math.min(count, 1000); int len = ids.size(); int size = len % count; if (size == 0) { size = len / count; } else { size = (len / count) + 1; } StringBuilder builder = new StringBuilder(); for (int i = 0; i < size; i++) { int fromIndex = i * count; int toIndex = Math.min(fromIndex + count, len); //System.out.println(ids.subList(fromIndex, toIndex)); String productId = StringUtils.defaultIfEmpty(StringUtils.join(ids.subList(fromIndex, toIndex), "','"), ""); if (i != 0) { builder.append(" or "); } builder.append(field).append(" in ('").append(productId).append("')"); } return StringUtils.defaultIfEmpty(builder.toString(), field + " in ('')");}

转载于:https://www.cnblogs.com/key2013/archive/2013/02/28/2937152.html

你可能感兴趣的文章
KubeEdge向左,K3S向右
查看>>
DTCC2013:基于网络监听数据库安全审计
查看>>
CCNA考试要点大搜集(二)
查看>>
ajax查询数据库时数据无法更新的问题
查看>>
Kickstart 无人职守安装,终于搞定了。
查看>>
linux开源万岁
查看>>
linux/CentOS6忘记root密码解决办法
查看>>
25个常用的Linux iptables规则
查看>>
集中管理系统--puppet
查看>>
分布式事务最终一致性常用方案
查看>>
Exchange 2013 PowerShell配置文件
查看>>
JavaAPI详解系列(1):String类(1)
查看>>
HTML条件注释判断IE<!--[if IE]><!--[if lt IE 9]>
查看>>
发布和逸出-构造过程中使this引用逸出
查看>>
使用SanLock建立简单的HA服务
查看>>
Subversion使用Redmine帐户验证简单应用、高级应用以及优化
查看>>
Javascript Ajax 异步请求
查看>>
DBCP连接池
查看>>
cannot run programing "db2"
查看>>
mysql做主从relay-log问题
查看>>