mysql update case update field value is not fixed operation

mysql update case update field value is not fixed operation

When processing batch updates of certain data, if the values ​​of the fields you are updating are the same, such as a certain status is updated to a fixed value,

Just use update table set xxx=xxx where xxx=xxx

If the value of the field to be updated is not fixed, it is more convenient to use the following update case when where method:

UPDATE tablename 
set a1= CASE userid 
 WHEN 1 THEN a1+5 
 WHEN 2 THEN a1+2 
 END,
a2= CASE userid 
 WHEN 1 THEN a2-5 
 WHEN 2 THEN a2-2
END
where userid in (1,2)

When using update case when, you must include the where condition, otherwise the entire table will be updated, which can have serious consequences.

Supplement: MySQL update && case when combined with batch update

Direct code sql:

The room field value is in the format of 18F-N01

UPDATE t_report SET room = CONCAT_WS( '-', SUBSTRING_INDEX(room, '-', 1) ,
 CASE SUBSTRING_INDEX(room, '-', -1) 
 WHEN 'N01' THEN 'N02' 
 WHEN 'N02' THEN 'N01'
 WHEN 'N03' THEN 'N11'
 WHEN 'N04' THEN 'N10'
 WHEN 'N05' THEN 'N09'
 WHEN 'N06' THEN 'N08'
 WHEN 'N07' THEN 'N07'
 WHEN 'N08' THEN 'N06'
 WHEN 'N09' THEN 'N05'
 WHEN 'N10' THEN 'N03'
 END )
WHERE rid IN ( 
 SELECT rid FROM t_report WHERE rdate = '190306' AND ordinal BETWEEN '23' AND '32'
)

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me.

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
  • Summary of Mysql update multi-table joint update method
  • Explanation of mysql transaction select for update and data consistency processing
  • A "classic" pitfall of MySQL UPDATE statement

<<:  Things to note when writing self-closing XHTML tags

>>:  How does Vue solve the cross-domain problem of axios request front end

Recommend

Detailed explanation of the two modes of Router routing in Vue: hash and history

hash mode (default) Working principle: Monitor th...

CSS to achieve dynamic secondary menu

Dynamically implement a simple secondary menu Whe...

Specific method to delete mysql service

MySQL prompts the following error I went to "...

6 solutions for network failure in Docker container

6 solutions for network failure in Docker contain...

Details of various font formats in HTML web pages

This section starts with the details of text modi...

Example code for implementing page floating box based on JS

When the scroll bar is pulled down, the floating ...

How to quickly build a static website on Alibaba Cloud

Preface: As a junior programmer, I dream of build...

mysql 8.0.19 winx64.zip installation tutorial

This article records the installation tutorial of...

jQuery plugin to achieve code rain effect

This article shares the specific code of the jQue...

The difference between br and br/ in HTML

answer from stackflow: Simply <br> is suffic...

$nextTick explanation that you can understand at a glance

Table of contents 1. Functional description 2. Pa...

Vue form input binding v-model

Table of contents 1.v-model 2. Binding properties...