php – 更新大型MySQL表

前端之家收集整理的这篇文章主要介绍了php – 更新大型MySQL表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我的MySQL数据库中有一个10000个产品的表.我想以最快的方式更新所有记录.我正在使用Laravel和MysqL.

为了更好的解决方案,我也可以改变技术现在需要将近半小时来更新整个表格.

我想以最快的方式更新该表.我该怎么办?

UPDATE

我正在使用如下的Laravel模型

DB::table('products')->where('product_id',$product_id)->limit(1)->update(array('prodcut_quantity' => $prodcut_quantity));
最佳答案
我将创建一个循环,将主键和产品数量添加到数组中,然后执行DB :: insert并输入INSERT ON DUPLICATE UPDATE查询(如下所示),将值替换为数组中的值:

$array = array(
    '1,1',//product_id,product_quantity
    '2,2','4,12',);

DB::insert('INSERT INTO products (product_id,product_quantity) VALUES (' . implode('),(',$array) . ') ON DUPLICATE KEY UPDATE product_quantity=VALUES(product_quantity)');

查询将尝试将product_id和product_quantity插入到products表中.由于product_id已经存在,查询将更改为UPDATE,我们将我们想要的列product_quantity映射到.

原文链接:https://www.f2er.com/mysql/433223.html

猜你在找的MySQL相关文章