How to implement batch update of data in mysql in PHP
The content of this article is about how PHP updates data in MYSQL in batches. The content is very detailed. Friends in need can refer to it. I hope it can help you.
This business involves updating two data tables, so you will think that it is very simple, and you will immediately upload the code
$sql = "update newhouse_clicks set clicks=6,type=1,update_time=time() where is=$value['id']";
The data table is named newhouse_clicks and has four fields. Primary key id, type (type - integer) field, clicks (clicks - integer) field, update_time (integer) field
Is there really no problem with this? For example, if you want to batch update all real estate properties in the current city, such as Beijing, for example, if there are 1,000 pieces of data, then in the business, should you write like this
$data = array(id=>1,id=>2,..........id=>1000);//省略数据 foreach($data as $key=>$value) { $sql = "update newhouse_clicks set clicks=6,type=1,update_time=time() where is=$value['id']"; }
This will involve multiple tables * 1,000 pieces of data , then will there be a big delay?
The result is yes, her writing like this did cause the server to time out!
If you are familiar with languages such as JAVA, you should know that JAVA provides the function of batch updating SQL internally. So, as the best language in the world, can PHP do it? The answer is yes!
Then let’s learn the sql statement for batch update.
UPDATE newhouse_clicks SET clicks = CASE id WHEN 1 THEN 1000 WHEN 2 THEN 2000 WHEN 3 THEN 3000 END WHERE id IN (1,2,3)
Be patient, let’s explain the meaning of this sql statement in detail:
Update the clicks field in the newhouse_clicks data table. When id=1, the value is set to 1000, and when id=2, it is set. The value is 2000. When id=3, set the value to 3000
. So is it possible to update multiple fields? Of course, you can, post the code:
UPDATE newhouse_clicks SET clicks = CASE id WHEN 1 THEN 1000 WHEN 2 THEN 2000 WHEN 3 THEN 3000 END, type = CASE id WHEN 1 THEN 1 WHEN 2 THEN 6 WHEN 3 THEN 8 END WHERE id IN (1,2,3)
The meaning of this SQL statement is to update the clicks field in the newhouse_clicks data table. When id=1, the value is set to 1000, when id=2, the value is set to 2000, when When id=3, set the value to 3000 and update the type field. When id=1, update the type field to 1. When id=2, update the type field to 6. When id=3, update the type field to 8.
So, can’t PHP, the best language in the world, be able to spell out sql?
//查询数据库返回的数据格式 $newhouse_clicks = array( => 2, => 3, => 8, => 9, ); $ids = implode(',', array_keys($newhouse_clicks )); $sql = "UPDATE newhouse_clicks SET clicks = CASE id "; foreach ( $newhouse_clicks as $key => $value) { $sql .= sprintf("WHEN %d THEN %d ", $key, $value); } $sql .= "END WHERE id IN ($ids)"; echo $sql;
Let’s check if it is the same as our sql statement above!
So, is our real data more complicated than this? Sure, depending on the question, is the format of the data we usually take out from the database like this?
//查询数据库返回的数据格式 $newhouse_clicks = array( => array('clicks'=>1,'type'=>1,'update_time'=>time()), => array('clicks'=>2,'type'=>2,'update_time'=>time()), => array('clicks'=>3,'type'=>3,'update_time'=>time()), => array('clicks'=>4,'type'=>4,'update_time'=>time()), ); ?>
So, what to do in this situation?
<?php //查询数据库返回的数据格式 $newhouse_clicks = array( => array('clicks'=>1,'type'=>1,'update_time'=>time()), => array('clicks'=>2,'type'=>2,'update_time'=>time()), => array('clicks'=>3,'type'=>3,'update_time'=>time()), => array('clicks'=>4,'type'=>4,'update_time'=>time()), ); //获取所有的id $newhouse_clicks_keys = array_keys($newhouse_clicks); //拼接批量更新sql语句 $sql = "UPDATE newhouse_clicks SET "; //合成sql语句 foreach ($newhouse_clicks[1] as $key => $value) { $sql .= "{$key} = CASE id "; foreach ($newhouse_clicks as $newhouse_clicks_key=>$newhouse_clicks_value) { $sql .= sprintf("WHEN %d THEN %d ", $newhouse_clicks_key, $newhouse_clicks_value[$key]); } $sql .= "END, "; } //把最后一个,去掉 $sql = substr($sql, 0, strrpos($sql,',')); //合并所有id $ids = implode(',', $newhouse_clicks_keys); //拼接sql $sql .= " WHERE ID IN ({$ids})"; echo $sql;
Actually, I wrote so many words just to assemble them into mysql statements.
Done! Isn’t the speed as smooth as silk!
It is easy for many programmers, especially beginners, to fall into a misunderstanding and put the data fetching in SQL into a for loop. Writing like this leads to a problem, which is serious congestion. There is such an example in real life:
For example, you are working on the 12th floor, and the courier calls you and asks you to go downstairs to pick up the express. (12 pieces in total), you have two ways to pick up the express:
1. Get the first express, run back to the 12th floor, put it away, then go and pick up the next express, put it away 12 After layering, go on to pick up a piece of express delivery.
2. Take all the express delivery to the 12th floor at one time.
out out out out out out of 20-year-old going out - but everyone will definitely choose the second option.
The computer is based on the above principle. Retrieving data from resources in a for loop is similar to the first solution. Fetching data in batches is similar to the second solution. (PS: Don’t think that there is such a problem when fetching data in mysql. Redis also
will have this kind of problem. Otherwise, how can there be a pipeline to fetch batch data? This is something I often do during interviews. When asked in an interview question, it will definitely become the standard for measuring a person's technical level)
Related recommendations:
How to upload files to Qiniu in PHP method code
The above is the detailed content of How to implement batch update of data in mysql in PHP. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Title: Steps and Precautions for Implementing Batch Updates by Oracle Stored Procedures In Oracle database, stored procedures are a set of SQL statements designed to improve database performance, reuse code, and enhance security. Stored procedures can be used to update data in batches. This article will introduce how to use Oracle stored procedures to implement batch updates and provide specific code examples. Step 1: Create a stored procedure First, we need to create a stored procedure to implement batch update operations. The following is how to create a stored procedure

Application cases of Oracle stored procedure batch update in data processing In actual data processing, we often need to update a large amount of data in the database. Oracle database provides the function of stored procedures, which can effectively handle these large batch data update operations and improve data processing efficiency and performance. In this article, we will introduce the application case of batch update of Oracle stored procedures and provide specific code examples to help readers better understand and use this function. Case Background Suppose we have a

The tacit cooperation between Vue and Excel: How to realize batch update and import of data Introduction: With the rapid development of information technology, Excel tables, as a popular data management tool, are widely used in various industries and fields. At the same time, Vue is also widely popular as a flexible and efficient front-end development framework. This article will introduce how to achieve batch update and import of data through the tacit cooperation of Vue and Excel. To help readers understand better, we will give code examples. Implement data batch update: in V

In this article, we will see how to perform bulk insert/update in Hibernate. Whenever we execute a sql statement, we do it by making a network call to the database. Now, if we have to insert 10 entries into the database table, then we have to make 10 network calls. Instead, we can optimize network calls by using batch processing. Batch processing allows us to execute a set of SQL statements in a single network call. To understand and implement this, let us define our entity − @EntitypublicclassParent{@Id@GeneratedValue(strategy=GenerationType.AUTO)

Efficient combination of Vue and Excel: How to achieve batch update and import of data. With the continuous development of web applications and the increasing amount of data, we often encounter situations where we need to update and import data in batches. As a widely used spreadsheet tool, Excel has powerful data processing and import and export functions, and has become one of our first choice tools for processing large amounts of data. This article will introduce how to use Vue and Excel to implement batch update and import of data to improve the efficiency of data processing. First, we need

How to solve database update performance issues in Java development Summary: With the increase in data volume and business changes, database update performance issues have become a major challenge in Java development. This article will introduce some common methods and techniques to solve database update performance problems. Keywords: Java development, database, update performance issues, solutions Introduction: In most Java applications, the database plays an important role. The performance of the database directly affects the response speed and stability of the application. In actual development, the number

MySQL is a widely used relational database management system that provides many effective data manipulation methods. When a large amount of data needs to be updated, the batch update method can be used to improve efficiency. This article will introduce the batch update method in MySQL. 1. What is batch update? Batch update refers to updating multiple data rows through one SQL statement. Compared with the method of updating one row at a time, batch update can effectively reduce the load of the database and network transmission time, and improve the efficiency and speed of data operations. 2. Implementation method of batch update

Title: Oracle stored procedure batch update implementation method In Oracle database, using stored procedures to batch update data is a common operation. Batch updates can improve the efficiency of data processing, reduce frequent access to the database, and also reduce the complexity of the code. This article will introduce how to use stored procedures to update data in batches in Oracle database, and give specific code examples. First, we need to create a stored procedure that will implement the function of updating data in batches. under
