mysql清除数据库中字符串空格方法
2019/10/10/17:34:43 阅读:2842 来源:谷歌SEO算法 标签:
黑猫SEO
在mysql清除字符串空格有两个常用的使用方法一种是利用trim函数另一种是直接replace字符替换函数进行清除,下面我来给大家详细介绍.
1)mysql replace 函数
语法:replace(object,search,replace)
意思:把object中出现search的全部替换为replace
案例,代码如下:update `news` set `content`=replace(`content`,' ','');,清除news表中content字段中的空格.
2)mysql trim 函数
完整格式:TRIM([{BOTH | LEADING | TRAILING} [remstr] FROM] str)
简化格式:TRIM([remstr FROM] str)
以下举例说明,代码如下:
- mysql>SELECTTRIM('phpernote');
- ->'phpernote'
- mysql>SELECTTRIM(LEADING'x'FROM'xxxphpernotexxx');
- --phpfensi.com
- ->'phpernotexxx'
- mysql>SELECTTRIM(BOTH'x'FROM'xxxphpernotexxx');
- ->'phpernote'
- mysql>SELECTTRIM(TRAILING'xyz'FROM'phpernotexxyz');
mysql中的去除左空格函数,代码如下:
- LTRIM(str)
- Returnsthestringstrwithleadingspacecharactersremoved.
以下是代码片段,代码如下:
- mysql>SELECTLTRIM('barbar');
- ->'barbar'
- Thisfunctionismulti-bytesafe.
mysql中的去除右空格函数:
- RTRIM(str)
- Returnsthestringstrwithtrailingspacecharactersremoved.
以下是代码片段:
- mysql>SELECTRTRIM('barbar');
- ->'barbar'
- Thisfunctionismulti-bytesafe.
热门评论