search
HomeDatabaseMysql TutorialIn-depth exploration of the usage details of UPDATE in MySQL

In MySQL, you can use the UPDATE statement to modify and update data in one or more tables. The following article will help you explore the details of the use of UPDATE in MySQL. I hope it will be helpful to you.

In-depth exploration of the usage details of UPDATE in MySQL

Requirement background

I recently received a data migration requirement. The data of the old system was migrated to the new system; the old system did not Business data will be added again, and business operations will be performed on the new system

In order to reduce the impact of migration, data will be migrated in batches, which means that the old and new systems will run in parallel for a period of time

Data is divided Batches are not divided according to the ID range, which means that the IDs of each batch of data are irregular

In addition, in order to ensure the correspondence between the old and new system data, the IDs of the new system use the IDs of the old system as much as possible.

Since the table id is auto-incremented in both the old and new systems, during migration, the id of the old system may have been occupied in the new system, similar to the following

Description of requirements

When migrating data, use the IDs of the old system as much as possible, and conflicting IDs need to be adjusted in batches

  How to adjust this batch of conflicting IDs is exactly what I want to achieve now

My implementation is to preset an ID based on the growth of business data and the maximum ID of the current new system. Starting id

 

 How to write this SQL?

Requirement realization

Some friends may think that this is not simple?

It’s just 5 pieces of data, can’t it be done just like this?

It’s such a simple thing, but there’s so much foreshadowing, sir, do you know how to do it? ?

The poster suddenly realized: My friend, you are so awesome

But if there are a lot of conflicting data (hundreds or thousands), you also Change it one by one?

If you really do this, I really admire you

In-depth exploration of the usage details of UPDATE in MySQL

Obviously, there are more sensible friends

So what should I do? Achieved?

The poster doesn’t want to be too fussy. You can use local variables UPDATE to achieve it, directly access SQL

Let’s look at the actual case

Table tbl_batch_update

## The data is as follows

The execution effect is as follows

After the update

Be more rigorous

How to achieve it? Does

UPDATE also support ORDER BY?

It’s really supported, as shown below

When the original poster usually uses UPDATE, he rarely combines it with ORDER BY and has never tried it. Combined with LIMIT

This attempt made the author feel unfamiliar with UPDATE. What should its complete syntax be like? Let’s read on slowly

UPDATE

The following are all based on the official documentation of MySQL 8.0UPDATE Statement is compiled, it is recommended that you go directly to the official documentation

 Single table syntax

Do you have a lot of questions:

## 

Multiple table syntax

## Compared with single table syntax Table, seemingly simpler, does not support

ORDER BY and LIMIT

LOW_PRIORITY

  One of the modifiers of

UPDATE, used to reduce the priority of SQL When using

LOW_PRIORITY

After that, the execution of UPDATE will be delayed until no other client reads data from the table However, only table-level locks Storage engines only support

LOW_PRIORITY

. The storage engines for table-level locks include: MyISAM, MEMORY and MERGE, so the most commonly used InnoDB is not supported There are very few usage scenarios, just look familiar

 

IGNORE

 

One of the modifiers of UPDATE, used to declare how SQL handles errors during execution If

IGNORE

is not used, UPDATE If an error occurs during execution, it will abort, as shown below

## 

9002

Update When 9003 is generated, the primary key conflicts, and the entire UPDATE is aborted, and 9000 is updated. The successful 9001 will be rolled back, 9003 ~ 9005 has not yet been updated. What will happen if IGNORE

is used?

 

UPDATE

Even if an error occurs during execution, the execution will be completed and the number of affected rows will eventually be returned

The affected rows returned above are 2. Can you tell me which two rows were modified?

For more information about IGNORE, please check: The Effect of IGNORE on Statement Execution

Regarding usage scenarios, parallelism between old and new systems, It may be used when doing data migration. When the primary key or unique key conflicts, just ignore

 ORDER BY

If you are interested in UDPATE If you understand the execution process, it will be easier to understand

  UPDATE There are actually two stages: Check stage, Update stage

Processing row by row, if a row satisfies the WHERE clause, update the row

So, here ORDER BY is the same as ORDER BY## in SELECT # It’s the same effect

Regarding the usage scenarios, you can go back and look at the demand background mentioned earlier,

 

IGNORE Case 1 In fact, you can also use ORDER BY

 

LIMIT

 

LIMIT row_count clause is the row matching limit. Once a row_count row is found that satisfies the WHERE clause, the statement will stop immediately

, regardless of whether the rows actually changed. That is to say

LIMIT is limited to the Check phase and has nothing to do with the Update phase

## 

Note that : There is still a difference from LIMIT in the syntax of

SELECT

 

value DEFAULT

##  

UPDATE

The value of the SET clause is an expression. We can understand, what does this DEFAULT mean? Let’s first look at such a problem. Suppose a column is declared

NOT

NULL, but we update this column to NULL

What will happen

Let’s take a look at SQL_MODE and execute SELECT @@sql_mode; to get the result

  STRICT_TRANS_TABLES indicates that strict mode is enabled, for INSERT and UPDATE statements value Control will be stricter

If we turn off strict mode and look at the execution results

 name Field declaration It becomes NOT NULL. In non-strict SQL mode, set name to NULL is successful, but the changed value is not NULL, but the default value of type VARCHAREmpty string ('')

Summary

1. In strict SQL mode, NOT NULL If the field setting is NULL, an error will be reported directly and the update will fail

  2. Non In strict SQL mode, if the field setting of NOT NULL is NULL, the field value will be set to the field type The corresponding default value

For the default value of the field type, you can view: Data Type Default Values

For the sql_mode, you can view: Server SQL Modes

Normally, the generation environment MySQL is usually in strict mode, so it is enough for everyone to know that there is value DEFAULT

 SET field order

For the following SQL

I believe everyone is very clear

However, what will be the value of the name column in the following SQL

Let’s take a look at the result

Is the value of name a little different from expected?

The SET of a single table UPDATE is performed from left to right, but for multiple tables UPDATE But not, multiple tables UPDATE are not guaranteed to proceed in any specific order

Summary

 1. Whether it is UPDATE or DELETE, there is a process of checking first, and processing each line found

 2. UPDATE in syntax LOW_PRIORITY is rarely used, IGNORE is used occasionally, ORDER BY and LIMIT will be used more often, and they all look familiar

 3. sql_mode is more important Knowledge points are recommended for everyone to master; for production environments, it is strongly recommended to turn on strict mode

Original address: https://www.cnblogs.com/youzhibing/p/16719474.html

Author: Qingshi Lu

[Related recommendations: mysql video tutorial]

The above is the detailed content of In-depth exploration of the usage details of UPDATE in MySQL. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:博客园. If there is any infringement, please contact admin@php.cn delete
修复:谷歌浏览器更新检查失败错误代码3:0x80040154修复:谷歌浏览器更新检查失败错误代码3:0x80040154Apr 13, 2023 pm 05:46 PM

谷歌浏览器是全球最受欢迎的浏览器之一,许多用户更喜欢将其用作 Windows PC 上的默认浏览器。Chrome 提供了广泛的功能,使浏览体验愉快而轻松,因此,它仍然是最受信任的浏览器之一。但是,就像任何其他浏览器一样,即使 Chrome 也有其自身的缺点,它同样容易在您最需要的时候出现错误和故障。一个这样的错误是错误代码 3:0x80040154,这发生在检查 Google Chrome 更新时。错误消息显示为“检查更新时发生错误。更新检查无法启动(错误代码 3:0x80080005)或(错误

如何启用/禁用 VS Code 自动更新如何启用/禁用 VS Code 自动更新Apr 28, 2023 am 09:28 AM

如果您正在使用VisualStudioCode(VSCode)并考虑如何禁用它的自动软件更新以及如何禁用其扩展的自动更新,那么请阅读本文。如果你不经常使用VSCode,隔了很长一段时间打开编辑器并想启用自动更新,本文也将指导你这样做。让我们详细讨论启用或禁用VSCode自动更新的不同方法。目录方法一:使用设置启用/禁用VSCode自动更新第一步:打开VS代码,在左下角点击齿轮状的符号。第2步:在出现的列表中单击设置。第3步:在搜索栏中输入更新并回车。查找更新:模式第4

mysql怎么替换换行符mysql怎么替换换行符Apr 18, 2022 pm 03:14 PM

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

KDE Plasma 6.1 brings many enhancements to the popular Linux desktopKDE Plasma 6.1 brings many enhancements to the popular Linux desktopJun 23, 2024 am 07:54 AM

After several pre-releases, the KDE Plasma development team unveiled version 6.0 of its desktop environment for Linux and BSD systems on 28 February, using the Qt6 framework for the first time. KDE Plasma 6.1 now comes with a number of new features t

Microsoft compatibility telemetry占用高CPU的解决方法Microsoft compatibility telemetry占用高CPU的解决方法Mar 16, 2024 pm 10:16 PM

我们在使用win10系统的时候有时候会遇到电脑变得卡顿的情况,然后我们在查看后台进程的时候会发现一个Microsoftcompatibilitytelemetry的进程占用资源特别的高,那么这是怎么回事?用户们可以尝试卸载三方防护软件后尝试干净启动来进行操作,下面就让本站来为用户们来仔细的介绍一下Microsoftcompatibilitytelemetry占用高CPU的解决方法吧。Microsoftcompatibilitytelemetry占用高CPU的解决方法方法一:卸载三方防护软件后尝试

MySQL复制技术之异步复制和半同步复制MySQL复制技术之异步复制和半同步复制Apr 25, 2022 pm 07:21 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

SQL中UPDATE语句怎么用SQL中UPDATE语句怎么用Jun 02, 2023 pm 09:13 PM

SQLUPDATE语句Update语句用于修改表中的数据。语法如下:UPDATE表名称SET列名称=新值WHERE列名称=某值"Person"表:LastNameFirstNameAddressCityGatesBillXuanwumen10BeijingWilsonChamps-Elysees更新某一行中的一个列UPDATEPersonSETFirstName="Fred"WHERELastName="Wilson"结果:LastNa

带你把MySQL索引吃透了带你把MySQL索引吃透了Apr 22, 2022 am 11:48 AM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.