Replace usage of the mysql character replacement function

Source: Internet
Author: User
Replace can replace characters in mysql, but if you really want to update the replace content, we also need to combine the update operation.

Replace can replace characters in mysql, but if you really want to update the replace content, we also need to combine the update operation.

Example

The Code is as follows:

UPDATE 'addonarticle' Set 'body' = REPLACE ('body', 'Ah Meng', Xiao Xiong ')

In this way, the content in your field body is replaced.

Replace

The Code is as follows:

Replace into table (id, name) values ('1', 'A'), ('2', 'bb ')

This statement inserts two records into the table. If the primary key id is 1 or 2 does not exist
It is equivalent

The Code is as follows:

Insert into table (id, name) values ('1', 'A'), ('2', 'bb ')

Data is not inserted if the same value exists.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.