MySQL command statement to get rid of the field hollow lattice character method

Source: Internet
Author: User

What can MySQL do to remove spaces from a field character in bulk? Not only the space before and after the string, but also the space in the middle of the string, the answer is replace, using the MySQL self-contained replace function, plus a trim function. (1) MySQL replace functionSyntax: replace (object,search,replace) meaning: Replace all occurrences of search in object with the Replace case:SQL Code copy content to clipboard
    1. Update ' News ' set ' content ' =replace (' content ',' ', ');//clear spaces in the content field in the news table

(2) MySQL trim functionSyntax: Trim ([{BOTH | Leading | TRAILING} [REMSTR] from] str) The following examples illustrate:SQL Code copy content to clipboard
    1. Mysql> SELECT TRIM (' phpernote ');
    2. ' Phpernote '
SQL Code copy content to clipboard
    1. Mysql> SELECT TRIM (Leading ' x ' from ' xxxphpernotexxx ');
    2. ' phpernotexxx '
SQL Code copy content to clipboard
    1. Mysql> SELECT TRIM (BOTH ' x ' from ' xxxphpernotexxx ');
    2. ' Phpernote '
SQL Code copy content to clipboard
    1. Mysql> SELECT TRIM (TRAILING ' xyz ' from ' phpernotexxyz ');
    2. ' Phpernotex '
      Reprint: http://www.itokit.com/2012/1221/74847.html

The MySQL command statement to get rid of the field's hollow lattice characters

Related Article

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.