批量插入对list进行分割

Posted wanjn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了批量插入对list进行分割相关的知识,希望对你有一定的参考价值。

public static void batchInsert(List<Integer> ints,int count ) {
        int begin =0;
        int end = begin+count ;
        while (begin<=ints.size()-1){
            List<Integer> integers = ints.subList(begin, end<=ints.size()?end:ints.size());
            //插入数据
            System.out.println(integers);
            begin = end;
            end = begin+count ;
        }

    }
    

 

以上是关于批量插入对list进行分割的主要内容,如果未能解决你的问题,请参考以下文章

FreeSql 教程 (六)批量插入数据

Mybatis+Oracle进行数据的批量插入和更新

mybatis使用foreach进行批量插入和删除操作

使用PreparedStatement进行批量插入

如何用python批量插入数据到mysql数据库,用list

批量执行SQL语句,进行删除,插入或者更改。