Batch replace part of the data of a field in MYSQL, the specific introduction is as follows: 1. Modify all text in the field containing the specified string UPDATE tableA SET fieldB = replace(fieldB, 'aaa', 'bbb') example: update table set url= replace(url, 'aaa', 'bbb') [Batch change aaa in the url field to bbb] update table set url= REPLACE (url,'3','1.png') where condition; 2. Modification of general conditions: update table set column='' where column is null Column: update `table` set `url`='0' where `url` is null Knowledge point supplement: MySQL batch replaces part of the content of a field Example There is a data table person, the structure is as follows
Requirement: Replace the xh in the urls field with the value of the id field Statement: UPDATE person SET urls = (REPLACE(urls,'xh',id)); Execution Result:
Summarize This is the end of this article about batch replacing part of the data in a field in MySQL. For more relevant MySQL batch replacement field 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:
|
<<: Vue Getting Started with Weather Forecast
>>: Ubuntu 20.04 Best Configuration Guide (Newbie Essential)
1 What is MVCC The full name of MVCC is: Multiver...
This article shares the specific code of the vue3...
There are many tags and elements in the HTML head ...
Table of contents 1. Database Engine 1.1 View dat...
1. Online Text Generator BlindTextGenerator: For ...
The main functions are as follows: Add product in...
1. Introduction to Logrotate tool Logrotate is a ...
Docker-machine is a Docker management tool offici...
<br />From the launch of NetEase's new h...
1. Environmental requirements 1. Docker 17 and ab...
The traditional method is to write a square in a ...
Official website explanation: When a component is...
If you want to adjust the size and number of Inno...
Preface What is a slow query and how to optimize ...
RocketMQ is a distributed, queue-based messaging ...