Today I will introduce to you a difference between the UPDATE statement in the MySQL database and the SQL standard (and other databases). If we don't pay attention to this problem, it may lead to unexpected results. Let's start by creating a simple example table: CREATE TABLE t1( id int, col1 int, col2 int ); INSERT INTO t1 VALUES (1, 1, 1); SELECT * FROM t1; id|col1|col2| --|----|----| 1| 1| 1| ———————————————— Copyright Statement: This article is an original article by CSDN blogger "Teacher Tony Who Doesn't Cut Hair", and follows the CC 4.0 BY-SA copyright agreement. Please attach the original source link and this statement when reprinting. Original link: https://blog.csdn.net/horses/article/details/110238573CREATE TABLE t1( id int, col1 int, col2 int ); INSERT INTO t1 VALUES (1, 1, 1); SELECT * FROM t1; id|col1|col2| --|----|----| 1| 1| 1| Then, we update the data in table t1: UPDATE t1 SET col1 = col1 + 1, col2 = col1 WHERE id = 1; SELECT col1, col2 FROM t1; What are the results of the col1 and col2 fields returned by the query statement?
For MySQL, if an UPDATE statement uses a previously updated column (col1) in an expression (col2 = col1), the updated value of the column (2) will be used instead of the original value (1). Note that this implementation in MySQL differs from the SQL standard. We also tested other databases, including Oracle, Microsoft SQL Server, PostgreSQL, and SQLite, whose implementations follow the SQL standard. If we want to achieve the same effect in MySQL as in standard SQL, we can adjust the order of the updated fields in the UPDATE statement. For example: UPDATE t1 SET col2 = col1, col1 = col1 + 1 WHERE id = 1; This way, the column col2 is updated before col1, using the old value of col1 (1), and the result is consistent with the SQL standard. Conclusion: Generally, when writing UPDATE statements, we do not need to worry about the update order of multiple fields. However, due to MySQL implementation issues, we need to pay attention to their grammatical order. This is the end of this article about the non-standard implementation of MySQL UPDATE statement. For more non-standard content related to MySQL UPDATE statement, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Summary of Several Methods for Implementing Vertical Centering with CSS
>>: Vue implements infinite loading waterfall flow
Table of contents 1. Concept 1.1 Definition 1.2 D...
First, you need to determine which fields or fiel...
Table of contents Why do databases need indexes? ...
Controversy over nofollow There was a dispute bet...
Table of contents introduction Cookie What are Co...
Preface According to the project needs, Vue-touch...
This article shares the specific code of vue+elem...
During system maintenance, you may need to check ...
MySQL bidirectional backup is also called master-...
The first one: Using the CSS position property &l...
Step 1: View the current kernel rew $ uname -a Li...
I was recently writing a lawyer recommendation we...
Table of contents 1. Scenario description: 2. Cas...
The methods and concepts of private filters and g...
This article example shares the specific code of ...