SQL 用 in 大于 1000 问题解决

-- 今天生成环境数据突然多,系统异常 解决方案(必须用in 业务情况),也可以用其他函数解决 union all  或者 exists 等

1:截取list

 List<Integer>  intList1apache=new ArrayLiat();

  1. List<List<Integer>> subs1apache = ListUtils.partition(intList1apache, 999);

2 :将List<String> 划分为List<List<String>>

按指定大小,分隔集合,将集合按规定个数分为n个部分

private static List<List<String>> splitList(List<String> list, int len) {
if (list == null || list.size() == 0 || len < 1) {
return null;
}
List<List<String>> result = new ArrayList<List<String>>();
int size = list.size();
int count = (size + len - 1) / len;
for (int i = 0; i < count; i++) {
List<String> subList = list.subList(i * len, ((i + 1) * len > size ? size : len * (i + 1)));
result.add(subList);
}
return result;
}



3.

改为: 入参为List<List<String>>

WHERE name IS NOT NULL
<if test="userids!=null and userids.size()>0" >
and
<foreach collection="userids" item="userid" open="(" separator="or" close=")">
createby in
<foreach collection="userid" item="createby" open="(" separator="," close=")">
#{createby}
</foreach>
</foreach>
</if>

效果 where xxx and (createby in (1,2,3,4,5 .... ,999) or createby in(1000,1001,....,1040))

4. 怎么2秒内 批量插入 5000 条数据

集合分割函数

  1. List<List<Integer>> subs1apache ListUtils.partition(intList1apache, 999);
    2.  List<List<Integer>> subs1apache = Lists.partition(intList1apache, 999);
     
     

 

posted @ 2022-01-20 17:36  黑狗已醒  阅读(1380)  评论(0编辑  收藏  举报