0


MySQL 字符串截取函数

MySQL 字符串截取函数:left(), right(), substring(), substring_index()、 mid(), substr()。其中,mid(), substr() 等价于 substring() 函数,substring() 的功能非常强大和灵活。

1、从左开始截取字符串

left(str, length)

说明:left(被截取字段,截取长度)

mysql> select left('apple.com', 3);

+----------------------+

| left('apple.com', 3) |

+----------------------+

| app |

+----------------------+

2、从右开始截取字符串

right(str, length)

说明:right(被截取字段,截取长度)

mysql> select right('apple.com', 3);

+-----------------------+

| right('apple.com', 3) |

+-----------------------+

| com |

+-----------------------+

3. 字符串截取

substring(str, pos)

substring(str, pos, length)

说明:substring(被截取字段,从第几位开始截取)

substring(被截取字段,从第几位开始截取,截取长度)

3.1 从字符串的第 5 个字符位置开始取,直到结束

mysql> select substring('apple.com', 5);

+---------------------------+

| substring('apple.com', 5) |

+---------------------------+

| http://e.com |

+---------------------------+

3.2 从字符串的第 5 个字符位置开始取,取4个字符

mysql> select substring('apple.com', 5, 4);

+------------------------------+

| substring('apple.com', 5, 4) |

+------------------------------+

| http://e.co |

+------------------------------+

3.3 从字符串的第 5 个字符位置(倒数)开始取,直到结束

mysql> select substring('apple.com', -5);

+----------------------------+

| substring('apple.com', -5) |

+----------------------------+

| http://e.com |

+----------------------------+

3.4 从字符串的第 5 个字符位置(倒数)开始取,取 4 个字符

mysql> select substring('apple.com', -5, 4);

+-------------------------------+

| substring('apple.com', -5, 4) |

+-------------------------------+

| http://e.co |

+-------------------------------+

注:如果位数是负数 如-5 则是从后倒数位数,到字符串结束或截取的长度;

函数 substring(str,pos, len)中, pos 可以是负值,但 len 不能取负值。

4、按关键字截取字符串

substring_index(str,delim,count)

说明:substring_index(被截取字段,关键字,关键字出现的次数)

4.1 截取第二个 '.' 之前的所有字符。

mysql> select substring_index('www.apple.com', '.', 2);

+------------------------------------------+

| substring_index('www.apple.com', '.', 2) |

+------------------------------------------+

| www.apple |

+------------------------------------------+

4.2 截取第二个 '.' (倒数)之后的所有字符。

mysql> select substring_index('www.apple.com', '.', -2);

+-------------------------------------------+

| substring_index('www.apple.com', '.', -2) |

+-------------------------------------------+

| apple.com |

+-------------------------------------------+

4.3 如果在字符串中找不到 delim 参数指定的值,就返回整个字符串

mysql> select substring_index('www.apple.com', 'abc', 1);

+--------------------------------------------+

| substring_index('www.apple.com', 'abc', 1) |

+--------------------------------------------+

| www.apple.com |

+--------------------------------------------+

标签: mysql 数据库

本文转载自: https://blog.csdn.net/sinat_30603081/article/details/130999763
版权归原作者 tboqi1 所有, 如有侵权,请联系我们删除。

“MySQL 字符串截取函数”的评论:

还没有评论