码迷,mamicode.com
首页 > 数据库 > 详细

MySQl 截取函数 left(),right(),substring(),substring_index() 的用法

时间:2017-12-04 00:16:01      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:字符串   bst   3.3   com   strong   结束   str   字符串截取   count   

1. 字符串截取:left(str, length)

mysql> select left(‘sqlstudy.com‘, 3);
+-------------------------+
| left(‘sqlstudy.com‘, 3) |
+-------------------------+
| sql                     |
+-------------------------+

2. 字符串截取:right(str, length)

mysql> select right(‘sqlstudy.com‘, 3);
+--------------------------+
| right(‘sqlstudy.com‘, 3) |
+--------------------------+
| com                      |
+--------------------------+

3. 字符串截取:substring(str, pos); substring(str, pos, len)

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

mysql> select substring(‘sqlstudy.com‘, 4);
+------------------------------+
| substring(‘sqlstudy.com‘, 4) |
+------------------------------+
| study.com                    |
+------------------------------+

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

mysql> select substring(‘sqlstudy.com‘, 4, 2);
+---------------------------------+
| substring(‘sqlstudy.com‘, 4, 2) |
+---------------------------------+
| st                              |
+---------------------------------+

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

mysql> select substring(‘sqlstudy.com‘, -4);
+-------------------------------+
| substring(‘sqlstudy.com‘, -4) |
+-------------------------------+
| .com                          |
+-------------------------------+

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

mysql> select substring(‘sqlstudy.com‘, -4, 2);
+----------------------------------+
| substring(‘sqlstudy.com‘, -4, 2) |
+----------------------------------+
| .c                               |
+----------------------------------+

我们注意到在函数 substring(str,pos, len)中, pos 可以是负值,但 len 不能取负值。

4. 字符串截取:substring_index(str,delim,count)

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

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

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

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

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

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

MySQl 截取函数 left(),right(),substring(),substring_index() 的用法

标签:字符串   bst   3.3   com   strong   结束   str   字符串截取   count   

原文地址:http://www.cnblogs.com/lixiaozhi/p/7967719.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!