Mybatis批量操作sql写法示例(批量新增、更新)

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

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

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

如果传入的参数类型为Map时,collection的属性值可为三种情况:

1.遍历map.keys;
2.遍历map.values;
3.遍历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);

接下来看sql如何写:

 
        insert into sys_group_member (group_id, user_id, creator_id, create_time)
        values
        
            
                (
                #{groupId}, #{userId}, 'admin', now()
                )
            
        
    

批量Insert,参数为Map

 void 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

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

Mybatis批量操作sql写法示例(批量新增、更新)_第1张图片

正确的sql写法如下:

 
        
            update sys_corporation set
            
                `name` = #{item.name},
            
            
                code = #{item.code},
            
            
                parent_code = #{item.parentCode},
            
            updater = 'system',
            update_time = now()
            where id = #{item.id}
        
    

总结

到此这篇关于Mybatis批量操作sql写法的文章就介绍到这了,更多相关Mybatis批量操作sql内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(Mybatis批量操作sql写法示例(批量新增、更新))