Delete string or field hollow function in MySQL

Source: Internet
Author: User
Keywords Web programming MySQL Tutorial
Tags code delete function how to how to do how to do it mysql mysql tutorial

The Ltrim,rtrim function is provided in MySQL to remove the first Mao of the character so if I want to delete the word Furu "ABC Fdsa" How To do it, let's look at the tutorial

LTrim function

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

RTrim function

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

The trim string function is really powerful. It not only eliminates the space at the end of the string, but also eliminates any character we specify. LTrim (), RTrim () is just a subset of its functionality.

The code is as follows
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

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.