Mybatis批量更新语句xml


    update table
    
      
        
          
            when `id` = #{item.id} then #{item.price}
          
        
      
      
        
          
            when `id` = #{item.id} then #{item.updateTime}
          
        
      
    
    where id in
    
      #{item.id}
    

上面就是批量更新的sql语句,修改为自己的表和字段就可以使用了!!!

你可能感兴趣的:(SpringBoot,mybatis,xml)