首页 java数据 mybaits批量更新(mysql已验证)

mybaits批量更新(mysql已验证)

第一种方式 update id=”updateBatch” parameterType=”Map”> update…

第一种方式

update id="updateBatch" parameterType="Map">
        update aa   set
            a=#{fptm},
            b=#{csoftrain}
        where c in
        <foreach collection="cs" index="index" item="item" pen="("separator=","close=")">
            #{item}
        </foreach>
</update>

但是这种方式修改的字段值都是一样的。

第二种方式

注意要修改数据库连接 不然update语句会报错,(已验证。)

修改数据库连接配置:&allowMultiQueries=true

比如:jdbc:MySQL://192.168.1.236:3306/test?useUnicode=true&amp;characterEncoding=UTF-8&allowMultiQueries=true

<update id="batchUpdate"  parameterType="java.util.List">

          <foreach collection="list" item="item" index="index" open="" close="" separator=";">
                update test
                <set>
                  test=${item.test}+1
                </set>
                where id = ${item.id}
         </foreach>

    </update>

 

免责声明:文章内容不代表本站立场,本站不对其内容的真实性、完整性、准确性给予任何担保、暗示和承诺,仅供读者参考,文章版权归原作者所有。如本文内容影响到您的合法权益(内容、图片等),请及时联系本站,我们会及时删除处理。

为您推荐

mysql  优化提升

mysql 优化提升

desc  分别使用DESCRIBE和DESC查看表tb dept1和表tb emp1的表结构。 查看表详细结构语句SH...
navicat 能打开root链接不知道密码直接修改mysql 密码

navicat 能打开root链接不知道密码直接修改mysql 密码

找到系统自带 mysql 数据库   update user set password= password(&...
Cannot access aliyunmaven ( xxx ) in offline mode and the artifact

Cannot access aliyunmaven ( xxx ) in offline mode and the artifact

Cannot access aliyunmaven ( xxx ) in offline mode and the ar...
mysql 基础入门

mysql 基础入门

第一章 SQL的介绍 1.1什么是sql SQL:Structure Query Language。(结构化查询语言),...
You can’t specify target table ‘caiji_data_meiwen’ for update in FROM clause

You can’t specify target table ‘caiji_data_meiwen’ for update in FROM clause

  mysql 中不能自己 引用本身 要再加一层 不行 DELETE from `caiji_data_mei...
返回顶部