A "classic" pitfall of MySQL UPDATE statement

A "classic" pitfall of MySQL UPDATE statement

Someone asked, for example, the following picture:

The problem can be summarized as follows: when update a record in MySQL , the syntax is correct, but the record is not updated...

When I first encountered this problem, I took this statement and executed it directly in the test library. I found that there was indeed a problem, but it was still different from the development description. Here I use test data to simulate it:

1. Problematic SQL statements

The record after execution is:

As you can see, the result is not as the developer said, "it seems to have no effect", but it actually has an effect:

why?

It seems that there is no problem with the syntax. I looked up the update syntax in the MySQL official document:

Seeing that the format of assignment_list is a comma-separated list of col_name=value , it suddenly became clear that the multi-field update statement that the developer wanted should be written like this:

Go back and try again

Sure enough, this time I got the desired result!

Summary: In an UPDATE statement, if you want to update multiple fields, you cannot use "AND" between the fields, but should separate them with commas.

Postscript: When I had some free time later, I looked back and wondered why the strange result of owner_code=0 appeared when “AND” was used to separate them. After many attempts, I found that:

is equivalent to:

And ( '43212' and owner_name='李四' ) is a logical expression, and it is not difficult to know owner_name is not '李四'. Therefore, the result of this logical expression is false, which is equivalent to 0 in MySQL !

This is the end of this article about a "classic" pitfall of MySQL UPDATE statement. For more relevant MySQL UPDATE content, 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:
  • Practical MySQL + PostgreSQL batch insert update insertOrUpdate
  • Difference between MySQL update set and and
  • Non-standard implementation code for MySQL UPDATE statement
  • mysql update case update field value is not fixed operation
  • Summary of Mysql update multi-table joint update method
  • Explanation of mysql transaction select for update and data consistency processing

<<:  Docker installation and configuration steps for MySQL

>>:  CSS sample code to achieve circular gradient progress bar effect

Recommend

How to process blob data in MySQL

The specific code is as follows: package epoint.m...

Detailed explanation of Nginx http resource request limit (three methods)

Prerequisite: nginx needs to have the ngx_http_li...

Several commonly used single-page application website sharing

CSS3Please Take a look at this website yourself, ...

How to deploy MySQL 5.7 & 8.0 master-slave cluster using Docker

> Deploy MySQL 5.7 cluster master & slave ...

Linux automatically deletes logs and example commands from n days ago

1. Delete file command: find the corresponding di...

Complete steps to install MySQL 8.0.x on Linux

MySQL Introduction to MySQL MySQL was originally ...

MySQL 5.7.18 download and installation process detailed instructions

MySql Download 1. Open the official website and f...

Using react+redux to implement counter function and problems encountered

Redux is a simple state manager. We will not trac...

Various correct postures for using environment variables in Webpack

Table of contents Write in front Business code us...

Analysis of MySQL query sorting and query aggregation function usage

This article uses examples to illustrate the use ...

Experience in designing a layered interface in web design

Many netizens often ask why their websites always ...

A brief discussion on two current limiting methods in Nginx

The load is generally estimated during system des...

Three ways to achieve background blur in CSS3 (summary)

1. Normal background blur Code: <Style> htm...