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
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.