When modifying a record in MySQL, the update operation field = field + string

When modifying a record in MySQL, the update operation field = field + string

In some scenarios, we need to modify our varchar type fields, and the result of the modification is the concatenation of two fields or the concatenation of a field + a string.

As shown below, we want to modify the name in the xx_role table to name+id.

In MySQL, if we operate directly through "+", an error will be prompted.

The operator "+" is used to add numbers. Here, the keyword concat is needed to indicate concatenation.

Similarly, we can also use field + string to concatenate.

Here we will briefly talk about the "+" operation, which is used to add numeric fields, as shown below:

Supplement: Use update in mysql to update multiple fields at the same time, including select query

Wrong attempts:

update table name set (field 1, field 2, field 3, ...) = (select value 1, value 2, value 3, ...) where condition

Correct way:

# UPDATE OldData o, NewData n without using select 
SET o.name = n.name, o.address = n.address 
where n.nid=234 and o.id=123;

# Using select situation UPDATE OldData o, (select name, address from NewData where id = 123) n 
SET o.name = n.name, o.address = n.address 
where n.nid=234;

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:
  • Non-standard implementation code for MySQL UPDATE statement
  • mysql update case update field value is not fixed operation
  • MySQL select results to perform update example tutorial
  • Will Update in a Mysql transaction lock the table?
  • Detailed analysis of the syntax of Mysql update to modify multiple fields and
  • Record a pitfall of MySQL update statement update
  • Detailed example of MySQL joint table update data
  • Detailed explanation of the execution process of mysql update statement
  • Summary of Mysql update multi-table joint update method
  • Difference between MySQL update set and and

<<:  15 lines of CSS code can cause Apple devices to crash, and the latest iOS 12 is not immune

>>:  How to enable remote access in Docker

Recommend

JS implements simple calendar effect

This article shares the specific code of JS to ac...

Detailed explanation of the use of Element el-button button component

1. Background Buttons are very commonly used, and...

VMware Tools installation and configuration tutorial for Ubuntu

Some time ago, the blogger installed the Ubuntu s...

Detailed explanation of Vite's new experience

What is Vite? (It’s a new toy on the front end) V...

HTML table tag tutorial (26): cell tag

The attributes of the <TD> tag are used to ...

JavaScript Advanced Closures Explained

Table of contents 1. The concept of closure Addit...

Samba server configuration under Centos7 (actual combat)

Samba Overview Samba is a free software that impl...

Two ways to configure Vue global methods

Table of contents 1. Introduction 2. The first me...

18 killer JavaScript one-liners

Preface JavaScript continues to grow and prosper ...

Make a nice flip login and registration interface based on html+css

Make a nice flip login and registration interface...

Vue3+script setup+ts+Vite+Volar project

Table of contents Create a vue + ts project using...

MySQL slow query method and example

1. Introduction By enabling the slow query log, M...

MySQL Billions of Data Import, Export and Migration Notes

I have been taking a lot of MySQL notes recently,...

Introduction to the common API usage of Vue3

Table of contents Changes in the life cycle react...