服务器之家

服务器之家 > 正文

mybatis in查询条件过长的解决方案

时间:2022-02-13 14:46     来源/作者:遥遥晚风点点

mybatis in查询条件过长的解决

方法1:分次查询,将参数且分割成多个短的查询后合并

代码:

?
1
2
3
4
5
6
7
8
int splitNum =(int) Math.ceil( (float) ids.length/999); //切片数量
List<String> itemIdList = new ArrayList<>(Arrays.asList(ids));
List<List<String>> splitList = averageAssign(itemIdList, splitNum);
for (List<String> list : splitList) {
 param.put("itemIds",list);
 List<Map<Object, Object>> itemStatisticsList = iProcessExtMapper.getItemStatisticsList(param);
 result.addAll(itemStatisticsList);
}

将list分成N等分方法方法:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public static <T> List<List<T>> averageAssign(List<T> source,int n){
 List<List<T>> result=new ArrayList<List<T>>();
 int remaider=source.size()%n;  //(先计算出余数)
 int number=source.size()/n;  //然后是商
 int offset=0;//偏移量
 for(int i=0;i<n;i++){
  List<T> value=null;
  if(remaider>0){
   value=source.subList(i*number+offset, (i+1)*number+offset+1);
   remaider--;
   offset++;
  }else{
   value=source.subList(i*number+offset, (i+1)*number+offset);
  }
  result.add(value);
 }
 return result;
}

方法2:xml文件中编写sql

?
1
2
3
4
5
6
7
8
9
10
i.id in    
 <foreach collection="itemIds" index="index" item="item" open="(" close=")">
 <if test="index != 0">
   <choose>
   <when test="index % 1000 == 999"> ) OR ID IN( </when>
                 <otherwise>,</otherwise>
   </choose>
 </if>
   #{item}
 </foreach>

sql逻辑:

?
1
ID IN(ids[0],ids[1]+...+ids[998])OR ID IN (ids[999],ids[1000],...ids[max])

mybatis大于1000的in查询的解决

之前公司一位同事写的方法:

?
1
2
3
4
5
6
7
8
9
<select id="getByDirIds" parameterType="string" resultMap="dirDocLinkMap">
        SELECT
        <include refid="columns"/>
        FROM KM_DIR_DOC_LINK T
        WHERE T.DIR_ID IN
        <foreach collection="array" index="index" open="(" close=")" item="item" separator=",">
            <if test="(index % 1000) == 999">NULL) OR T.DIR_ID IN (</if>#{item}
        </foreach>
    </select>

但是随着数据量增加,发现大于2000这种方法会报错;

论证如下

mybatis in查询条件过长的解决方案

解决办法

?
1
2
3
<foreach collection="array" item="item" index="index" open="(" close=")" separator=",">
                <if test="(index % 999) == 998"> NULL ) OR DOC.ID IN (</if>#{item}
            </foreach>

以上为个人经验,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/Mr_ye931/article/details/106102695

标签:

相关文章

热门资讯

蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
2022年最旺的微信头像大全 微信头像2022年最新版图片
2022年最旺的微信头像大全 微信头像2022年最新版图片 2022-01-10
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
返回顶部