batchupdate写法_Mybatis批量操作sql写法

Mybatis批量操作sql写法

foreach时,collection属性值的三种情况:

批量Insert,参数为List

foreach时,collection属性值的三种情况:如果传入的参数类型为List时,collection的默认属性值为list,同样可以使用@Param注解自定义keyName;

如果传入的参数类型为array时,collection的默认属性值为array,同样可以使用@Param注解自定义keyName;

如果传入的参数类型为Map时,collection的属性值可为三种情况:遍历map.keys;

遍历map.values;

遍历map.entrySet()

批量Insert,参数为List

mysql的批量新增sql的写法示例,先看一下mapper的写法;void batchSaveUser(List userList);

接下来看sql如何写;

insert into sys_user (ding_user_id, username, nickname, password, email,

mobile, avatar, creator_id, create_time, updator_id, update_time, is_delete)

values

(

#{user.dingUserId}, #{user.username}, #{user.nickname}, #{user.password}, #{user.email},

#{user.mobile}, #{user.avatar}, #{user.creatorId}, now(), #{user.updatorId}, now(), 0

)

批量Insert,参数为Map>void batchSaveGroupAndUser(@Param("map") Map> groupUserMap);

insert into sys_group_member (group_id, user_id, creator_id, create_time)

values

#{groupId}, #{userId}, 'admin', now()

批量Insert,参数为Mapvoid batchInsert(@Param("map") Map map);

insert into brand_info (code, `name`, is_delete, create_time)

values

#{key}, #{value}, 0, now()

如果是只需要遍历key,写法则是collection=“map.keys”

insert into brand_info (code, is_delete, create_time)

values

#{key}, 0, now()

同理,如果是只需要遍历value,写法则是collection=“map.values”

insert into brand_info (code, is_delete, create_time)

values

#{value}, 0, now()

批量Update,参数为List

注意: 在执行批量Update的时候,数据库的url配置需要添加一项参数:&allowMultiQueries=true

如果没有这个配置参数的话,执行下面的更新语句会报错:

d4e9ebf14be9d32d53143e7909cd3ffb.png

update sys_corporation set

`name` = #{item.name},

code = #{item.code},

parent_code = #{item.parentCode},

updater = 'system',

update_time = now()

where id = #{item.id}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值