- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Laravel实现批量更新多条数据由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
近期在刷新生产环境数据库的时候,需要更新表中的字段,如果对每条数据结果都执行一次update语句,占用的数据库资源就会很多,而且速度慢.
因为项目是laravel框架,laravel有批量插入的方法,却没有批量更新的方法,没办法只能自己实现.
mysql case…when的用法 。
mysql 的 case when 的语法有两种:
简单函数 。
case [col_name] when [value1] then [result1]…else [default] end 。
case [col_name] when [value1] then [result1]…else [default] end: 枚举这个字段所有可能的值 。
1
2
3
4
5
6
7
|
select id,status
'状态值'
,
case
status
when 10 then
'未开始'
when 20 then
'配送中'
when 30 then
'已完成'
when 40 then
'已取消'
end
'状态'
from table
|
输出结果:
搜索函数 。
case when [expr] then [result1]…else [default] end 。
case when [expr] then [result1]…else [default] end:搜索函数可以写判断,并且搜索函数只会返回第一个符合条件的值,其他case被忽略 。
1
2
3
4
5
|
select id,lessee_id
'租户id'
,
case
when lessee_id <=1 then
'自用系统'
when lessee_id >1 then
'租用系统'
end
'系统分类'
from waybill_base_info
|
case…when实现数据库的批量更新 。
更新单列的值 。
1
2
3
4
5
6
7
|
update base_info set
city_id =
case
id
when 1 then
when 2 then
when 3 then
end
where id in (1,2,3)
|
这句sql的意思是,更新city_id 字段:
如果id=1 则city_id 的值为100010, 。
如果id=2 则 city_id 的值为100011, 。
如果id=3 则 city_id 的值为100012.
即是将条件语句写在了一起.
这里的where部分不影响代码的执行,但是会提高sql执行的效率.
确保sql语句仅执行需要修改的行数,这里只有3条数据进行更新,而where子句确保只有3行数据执行.
1
2
3
4
5
6
7
8
9
10
11
12
|
update base_info set
city_id =
case
id
when 1 then 100010
when 2 then 100011
when 3 then 100012
end
,
city_name =
case
id
when 1 then ‘北京'
when 2 then ‘上海'
when 3 then ‘广州'
end
where id in (1,2,3)
|
不过这个有个缺点 : 要注意的问题是sql语句的长度,需要考虑程序运行环境所支持的字符串长度,当然这也可以更新mysql的设置来扩展.
在model方法中封装该批量更新的方法:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
//批量更新
public
function
updatebatch(
$multipledata
= [])
{
try
{
if
(
empty
(
$multipledata
)) {
log::info(
"批量更新数据为空"
);
return
false;
}
$tablename
=
$this
->table;
// 表名
$firstrow
= current(
$multipledata
);
$updatecolumn
=
array_keys
(
$firstrow
);
// 默认以id为条件更新,如果没有id则以第一个字段为条件
$referencecolumn
= isset(
$firstrow
[
'id'
]) ?
'id'
: current(
$updatecolumn
);
unset(
$updatecolumn
[0]);
// 拼接sql语句
$updatesql
=
"update "
.
$tablename
.
" set "
;
$sets
= [];
$bindings
= [];
foreach
(
$updatecolumn
as
$ucolumn
) {
$setsql
=
"`"
.
$ucolumn
.
"` = case "
;
foreach
(
$multipledata
as
$data
) {
$setsql
.=
"when `"
.
$referencecolumn
.
"` = ? then ? "
;
$bindings
[] =
$data
[
$referencecolumn
];
$bindings
[] =
$data
[
$ucolumn
];
}
$setsql
.=
"else `"
.
$ucolumn
.
"` end "
;
$sets
[] =
$setsql
;
}
$updatesql
.= implode(
', '
,
$sets
);
$wherein
= collect(
$multipledata
)->pluck(
$referencecolumn
)->values()->all();
$bindings
=
array_merge
(
$bindings
,
$wherein
);
$wherein
= rtrim(
str_repeat
(
'?,'
,
count
(
$wherein
)),
','
);
$updatesql
= rtrim(
$updatesql
,
", "
) .
" where `"
.
$referencecolumn
.
"` in ("
.
$wherein
.
")"
;
log::info(
$updatesql
);
// 传入预处理sql语句和对应绑定数据
return
db::update(
$updatesql
,
$bindings
);
}
catch
(\exception
$e
) {
return
false;
}
}
|
在service层拼接需要更新的数据,并调用该函数:
1
2
3
4
5
6
7
8
9
10
|
foreach
(
$taskinfo
as
$info
) {
$cityid
=
$info
[
'requirement'
][
'city_ids'
];
//此处省略n行代码
$cityinfo
= [
'id'
=>
$dataid
[
$info
[
'id'
]][
'id'
],
'city_id'
=>
$cityid
];
if
(
$cityinfo
) {
$cityinfos
[] =
$cityinfo
;
}
}
$res
=
$this
->waybilldriverinfomodel->updatebatch(
$cityinfos
);
}
|
拼接的批量更新的数组格式为:
$students = [ 。
[‘id' => 1, ‘city_id' => ‘100010'].
[‘id' => 2, ‘city_id' => ‘100011'].
],
生成的sql语句如下:
1
|
update base_info set `city_id` =
case
when `id` = 1 then 100010 when `id` = 2 then 100011
else
`city_id`
end
where `id` in (1,2)
|
因为每次只操作20条数据,所以这样拼接的字符串不会太长,符合mysql的字符串长度的要求,解决问题.
本文主要讲解了laravel实现批量更新多条数据的方法,更多关于laravel的使用技巧请查看下面的相关链接 。
原文链接:https://blog.csdn.net/qq_28673091/article/details/100534908 。
最后此篇关于Laravel实现批量更新多条数据的文章就讲到这里了,如果你想了解更多关于Laravel实现批量更新多条数据的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我查看了网站上的一些问题,但还没有完全弄清楚我做错了什么。我有一些这样的代码: var mongoose = require('mongoose'), db = mongoose.connect('m
基本上,根据 this bl.ocks,我试图在开始新序列之前让所有 block 都变为 0。我认为我需要的是以下顺序: 更新为0 退出到0 更新随机数 输入新号码 我尝试通过添加以下代码块来遵循上述
我试图通过使用随机数在循环中设置 JSlider 位置来模拟“赛马”的投注结果。我的问题是,当然,我无法在线程执行时更新 GUI,因此我的 JSlider 似乎没有在竞赛,它们从头到尾都在运行。我尝试
该功能非常简单: 变量:$table是正在更新的表$fields 是表中的字段,$values 从帖子生成并放入 $values 数组中而$where是表的索引字段的id值$indxfldnm 是索引
让我们想象一个环境:有一个数据库客户端和一个数据库服务器。数据库客户端可以是 Java 程序或其他程序等;数据库服务器可以是mysql、oracle等。 需求是在数据库服务器上的一个表中插入大量记录。
在我当前的应用程序中,我正在制作一个菜单结构,它可以递归地创建自己的子菜单。然而,由于这个原因,我发现很难也允许某种重新排序方法。大多数应用程序可能只是通过“排序”列进行排序,但是在这种情况下,尽管这
Provisioning Profile 有 key , key 链依赖于它。我想知道 key 什么时候会改变。 Key will change after renew Provisioning Pr
截至目前,我在\server\publications.js 中有我的 MongoDB“选择”,例如: Meteor.publish("jobLocations", function () { r
我读到 UI 应该始终在主线程上更新。但是,当谈到实现这些更新的首选方法时,我有点困惑。 我有各种函数可以执行一些条件检查,然后使用结果来确定如何更新 UI。我的问题是整个函数应该在主线程上运行吗?应
我在代理后面,我无法构建 Docker 镜像。 我试过 FROM ubuntu , FROM centos和 FROM alpine ,但是 apt-get update/yum update/apk
我构建了一个 Java 应用程序,它向外部授权客户端公开网络服务。 Web 服务使用带有证书身份验证的 WS-security。基本上我们充当自定义证书颁发机构 - 我们在我们的服务器上维护一个 ja
因此,我有时会在上传新版本时使用 app_offline.htm 使应用程序离线。 但是,当我上传较大的 dll 时,我收到黄色错误屏幕,指出无法加载 dll。 这似乎与我对 app_offline.
我刚刚下载了 VS Apache Cordova Tools Update 5,但遇到了 Node 和 NPM 的问题。我使用默认的空白 cordova 项目进行测试。 版本 如果我在 VS 项目中对
所以我有一个使用传单库实例化的 map 对象。 map 实例在单独的模板中创建并以这种方式路由:- var app = angular.module('myApp', ['ui', 'ngResour
我使用较早的 Java 6 u 3 获得的帧速率是新版本的两倍。很奇怪。谁能解释一下? 在 Core 2 Duo 1.83ghz 上,集成视频(仅使用一个内核)- 1500(较旧的 java)与 70
我正在使用 angular 1.2 ng-repeat 创建的 div 也包含 ng-click 点击时 ng-click 更新 $scope $scope 中的变化反射(reflect)在使用 $a
这些方法有什么区别 public final void moveCamera(CameraUpdate更新)和public final void animateCamera (CameraUpdate
我尝试了另一篇文章中某人评论中关于如何将树更改为列表的建议。但是,我在某处(或某物)有未声明的变量,所以我列表中的值是 [_G667, _G673, _G679],而不是 [5, 2, 6],这是正确
实现以下场景的最佳方法是什么? 我需要从java应用程序调用/查询包含数百万条记录的数据库表。然后,对于表中的每条记录,我的应用程序应该调用第三方 API 并获取状态字段作为响应。然后我的应用程序应该
只是在编写一些与 java 图形相关的代码,这是我今天的讲座中的非常简单的示例。不管怎样,互联网似乎说更新不会被系统触发器调用,例如调整框架大小等。在这个例子中,更新是由这样的触发器调用的(因此当我只
我是一名优秀的程序员,十分优秀!