第五章 mybatis批量更新update
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第五章 mybatis批量更新update相关的知识,希望对你有一定的参考价值。
一、所有的指定id的模型类的同一个字段进行批量更新
实际上:
update t set fileld=‘xx‘ where id in (id1,id2,...,idn)
代码:
<update id="updateBatch" parameterType="Map"> update t_name set name = #{name,jdbcType=VARCHAR} where autoid in ( <foreach collection="list" item="item" separator=","> #{item.id,jdbcType=BIGINT} </foreach> ) </update>
void updateBatch(@Param("list") List<User> list, @Param("name") String name);
二、指定id的模型类的不同字段进行批量更新
参考:http://blog.csdn.net/tolcf/article/details/39213217
以上是关于第五章 mybatis批量更新update的主要内容,如果未能解决你的问题,请参考以下文章
mybatis执行批量更新batch update 的方法(oracle,mysql)