Batch replace part of the data of a field in Mysql (recommended)

Batch replace part of the data of a field in Mysql (recommended)

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

id name urls
1 Zhang San xh.jpg
2 Li Si xh.jpg
3 Wang Wu 3.jpg

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:

id name urls
1 Zhang San 1.jpg
2 Li Si 2.jpg
3 Wang Wu 3.jpg

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:
  • mysql replace part of the field content and mysql replace function replace()
  • Two query methods when the MySQL query field type is json
  • MySQL group by method for single word grouping sequence and multi-field grouping
  • Should nullable fields in MySQL be set to NULL or NOT NULL?
  • The difference between char, varchar and text field types in MySQL
  • Analysis of how to create a stored procedure in MySQL to add new fields to a data table
  • MySQL SQL statement to find duplicate data based on one or more fields
  • A brief understanding of MySQL storage field type query efficiency

<<:  Vue Getting Started with Weather Forecast

>>:  Ubuntu 20.04 Best Configuration Guide (Newbie Essential)

Recommend

Implementation of MySQL's MVCC multi-version concurrency control

1 What is MVCC The full name of MVCC is: Multiver...

How to manually encapsulate paging components in Vue3.0

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

HTML head tag detailed introduction

There are many tags and elements in the HTML head ...

MySQL changes the default engine and character set details

Table of contents 1. Database Engine 1.1 View dat...

Introduction to 10 online development tools for web design

1. Online Text Generator BlindTextGenerator: For ...

A simple way to implement all functions of shopping cart in Vue

The main functions are as follows: Add product in...

Logrotate implements Catalina.out log rotation every two hours

1. Introduction to Logrotate tool Logrotate is a ...

Detailed explanation of docker-machine usage

Docker-machine is a Docker management tool offici...

User experience of portal website redesign

<br />From the launch of NetEase's new h...

Deploy Confluence with Docker

1. Environmental requirements 1. Docker 17 and ab...

An example of how to implement an adaptive square using CSS

The traditional method is to write a square in a ...

Do you know why vue data is a function?

Official website explanation: When a component is...

InnoDB engine redo file maintenance method

If you want to adjust the size and number of Inno...

MySQL slow query and query reconstruction method record

Preface What is a slow query and how to optimize ...

Docker installation rocketMQ tutorial (most detailed)

RocketMQ is a distributed, queue-based messaging ...