mysql trim函数用法实例

发布时间:2020-02-23编辑:脚本学堂
本文介绍了mysql中trim函数的用法,有关mysql去除空格函数trim的实例,有需要的朋友参考下。

一,mysql去除左空格函数:
ltrim(str)
returns the string str with leading space characters removed.

例子:
 

复制代码 代码示例:
mysql> select ltrim(' barbar');
-> 'barbar'
this function is multi-byte safe.

二,mysql去除右空格函数:
rtrim(str)
returns the string str with trailing space characters removed.

例子:
 

复制代码 代码示例:

mysql> select rtrim('barbar   ');
-> 'barbar'

this function is multi-byte safe.

三,trim函数可以过滤指定的字符串:
完整格式:trim([{both | leading | trailing} [remstr] from] str)
简化格式:trim([remstr from] str)

returns the string str with all remstr prefixes or suffixes removed. if none of the specifiers both, leading, or trailing is given, both is assumed. remstr is optional and, if not specified, spaces are removed.

例子:
 

复制代码 代码示例:
mysql> select trim(' bar   '); //默认删除前后空格
-> 'bar'
mysql> select trim(leading ',' from ',,barxxx'); //删除指定首字符 如’,‘
-> 'barxxx'
mysql> select trim(both ',' from ',,bar,,,');  //删除指定首尾字符
-> 'bar'
mysql> select trim(trailing ',' from 'barxxyz,,');
-> 'barxxyz'
 
mysql> select trim(' bar   '); //默认删除前后空格
-> 'bar'
mysql> select trim(leading ',' from ',,barxxx');  //删除指定首字符 如’,‘
-> 'barxxx'
mysql> select trim(both ',' from ',,bar,,,');  //删除指定首尾字符
-> 'bar'
mysql> select trim(trailing ',' from 'barxxyz,,');
-> 'barxxyz'
 
mysql> update table set `field`=trim(trailing ',' from `field`) where where `field` like '%,';
this function is multi-byte safe.

mysql trim函数清除字段两边的空格:
 

复制代码 代码示例:
update zen_products setproducts_additional_image=trim(products_additional_image) where 子句