Delete string or field hollow function in MySQL

Source: Internet
Author: User

LTrim function

The code is as follows Copy Code
Mysql> Select Concat ('. ', LTrim (' ddd '), '. ');

RTrim function

The code is as follows Copy Code
Mysql> Select Concat ('. ', RTrim (' ddd '), '. ');

Trim string function, is really powerful. Not only does it eliminate the space at the end of the string, but it also eliminates any character we specify. LTrim (), RTrim () is just a subset of its features.

The code is as follows Copy Code
UPDATE ' Tran '
SET ' status ' = ' 1 '
WHERE Trim (replace (' msg ', ' rn ', ')) = ' I love you ';

The data in the carriage return to replace the line and then trim off, to achieve the purpose, although not particularly perfect, but because there is no way to control the user input, so can only make this unwise, but the efficiency of MySQL built-in function is still very guaranteed

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.