in关键字中参数超过最大值的解决方法
程序员文章站
2022-05-18 18:36:39
...
前台页面查询时报错
定位到具体sql,放到PL SQL中查询
也就是in关键字默认参数数量大于1000时,就会报错
解决方法:
/**
*@Description: sql查询中使用in关键字时 参数数量大于900则分段查询
*@param1: in中参数列表LIST
*@param2: 需要查询的字段
*@author: V_US9Y3S
*@date: 2020-7-6
*/
public static String getInParameter(List<String> list, String parameter) {
if (!list.isEmpty()) {
List<String> setList = new ArrayList<String>(0);
Set set = new HashSet();
StringBuffer stringBuffer = new StringBuffer();
for (int i = 1; i <= list.size(); i++) {
set.add("'" + list.get(i - 1) + "'");
if (i % 900 == 0) {// 900为阈值
setList.add(org.apache.commons.lang.StringUtils.join(set.iterator(), ","));
set.clear();
}
}
if (!set.isEmpty()) {
setList.add(org.apache.commons.lang.StringUtils.join(set.iterator(), ","));
}
stringBuffer.append(setList.get(0));
for (int j = 1; j < setList.size(); j++) {
stringBuffer.append(") or " + parameter + " in (");
stringBuffer.append(setList.get(j));
}
return stringBuffer.toString();
} else {
return "''";
}
}
// idList: [308989171, 309365293, 309259039]
String sql1TaskId = methodUtil.getInParameter(idList, "B.TASK_ID");
// sql1TaskId: '309365293','308989171','309259039'
sql1.append(" AND (B.TASK_ID IN ("+sql1TaskId+") )");
// 上面表达式中,如果idList的大小大于900,则超过900的部分会用'or'的方式与900前相连
这里要注意,使用了 “or” 关键字时,最好用括号括起两边sql(另一篇文章里有)
推荐阅读
-
SQL中函数 replace 的参数1的数据类型ntext无效的解决方法
-
SQL中函数 replace 的参数1的数据类型ntext无效的解决方法
-
GET方法URL中传递中文参数乱码的解决方法
-
php获取URL中带#号等特殊符号参数的解决方法
-
Python中的可变参数和关键字参数
-
C#向线程中传递多个参数的解决方法(两种)
-
GET方法URL中传递中文参数乱码的解决方法
-
SQL Server中参数化SQL写法遇到parameter sniff ,导致不合理执行计划重用的快速解决方法
-
Python中的函数(定义、调用、形参、实参、必选参数、默认参数、可变参数,关键字参数)
-
Access数据库中“所有记录中均未找到搜索关键字”的解决方法