mysql字符串函数、字符串截取

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

  1. 字符串截取:left(str, length)
mysql> select left('9958.pw', 3);
+-------------------------+
| left('9958.pw', 3) |
+-------------------------+
| 995                     |
+-------------------------+
  1. 字符串截取:right(str, length)
mysql> select right('9958.pw', 2);
+--------------------------+
| right('9958.pw', 2) |
+--------------------------+
| pw                      |
+--------------------------+
  1. 字符串截取:substring(str, pos); substring(str, pos, len)

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

mysql> select substring('9958.pw', 4);
+------------------------------+
| substring('9958.pw', 4) |
+------------------------------+
| 8.pw                    |
+------------------------------+

3.2 从字符串的第 4 个字符位置开始取,只取 2 个字符。

mysql> select substring('9958.pw', 4, 2);
+---------------------------------+
| substring('9958.pw', 4, 2) |
+---------------------------------+
| 8.                              |
+---------------------------------+

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

mysql> select substring('9958.pw', -4);
+-------------------------------+
| substring('9958.pw', -4) |
+-------------------------------+
| 8.pw                         |
+-------------------------------+

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

mysql> select substring('9958.pw', -4, 2);
+----------------------------------+
| substring('9958.pw', -4, 2) |
+----------------------------------+
| 8.                               |
+----------------------------------+
我们注意到在函数 substring(str,pos, len)中, pos 可以是负值,但 len 不能取负值。
  1. 字符串截取:substring_index(str,delim,count)

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

mysql> select substring_index('www.demo.com.cn', '.', 2);
+------------------------------------------------+
| substring_index('www.demo.com.cn', '.', 2) |
+------------------------------------------------+
| www.demo                                   |
+------------------------------------------------+

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

mysql> select substring_index('www.demo.com.cn', '.', -2);
+-------------------------------------------------+
| substring_index('www.demo.com.cn', '.', -2) |
+-------------------------------------------------+
| com.cn                                          |
+-------------------------------------------------+

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

mysql> select substring_index('www.sqlstudy.com.cn', '.coc', 1);
+---------------------------------------------------+
| substring_index('www.demo.com.cn', '.coc', 1) |
+---------------------------------------------------+
| www.demo.com.cn                               |
+---------------------------------------------------+