第一种方式:一条update
<update id="updateThreadreturnList" parameterType="java.util.List">
update tb_thread set isDelete=0
where threadId in (
<foreach collection="list" item="item" index="index" open="" close="" separator=",">
#{item.threadId}
</foreach>
)
</update>
第二种方式:多条update
注意 需要在数据库添加 &allowMultiQueries=true
jdbc:mysql://192.168.1.109:3306/healthmanage?characterEncoding=utf-8&allowMultiQueries=true
<update id="updateQuestionseleteTempalteList" parameterType="java.util.List">
<foreach collection="list" item="item" index="index">
update tb_question_template_seleteitem_detail set selectedName=#{item.selectedName}
where 1=1 and selectedId =#{item.selectedId };
</foreach>
</update>
————————————————
版权声明:本文为CSDN博主「Jesse-Xue」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_38809962/article/details/79610348
相关文章
- 07-12批量插入或更新操作之ON DUPLICATE KEY UPDATE用法
- 07-12PgSQL upsert批量查询插入或更新(insert select/on conflict do update踩坑记录)
- 07-12使用where语句批量更新mysql
- 07-12oracle 批量更新之update case when then
- 07-12java下连接mysql数据库 ——更新语句——update
- 07-12mybatis批量更新update-设置多个字段值 报错 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near
- 07-12mybatis批量插入/更新时mapper的配置方法,oracle和mysql数据库配置方法不同
- 07-12MYSQL存储过程:批量更新数据
- 07-12批量更新MySQL表
- 07-12mysql根据查询结果批量更新多条数据(插入或更新)