MySQL 字符串截取函數:left(), right(), substring(), substring_index()。還有 mid(), substr()。其中,mid(), substr() 等價於 substring() 函數,substring() 的功能很是強大和靈活。html
1. 字符串截取:left(str, length)mysql
mysql> select left('example.com', 3);
+-------------------------+
| left('example.com', 3) |
+-------------------------+
| exa |
+-------------------------+
2. 字符串截取:right(str, length)sql
mysql> select right('example.com', 3);
+--------------------------+
| right('example.com', 3) |
+--------------------------+
| com |
+--------------------------+函數
實例:spa
#查詢某個字段後兩位字符
select right(last3, 2) as last2 from historydata limit 10;
#從應該字段取後兩位字符更新到另一個字段
update `historydata` set `last2`=right(last3, 2);htm
3. 字符串截取:substring(str, pos); substring(str, pos, len)blog
3.1 從字符串的第 4 個字符位置開始取,直到結束。注意是第4個字符的位置,而不是下標爲4的字符位置。字符串
mysql> select substring('example.com', 4);
+------------------------------+
| substring('example.com', 4) |
+------------------------------+
| mple.com |
+------------------------------+
3.2 從字符串的第 4 個字符位置開始取,只取 2 個字符。get
mysql> select substring('example.com', 4, 2);
+---------------------------------+
| substring('example.com', 4, 2) |
+---------------------------------+
| mp |
+---------------------------------+
3.3 從字符串的第 4 個字符位置(倒數)開始取,直到結束。string
mysql> select substring('example.com', -4);
+-------------------------------+
| substring('example.com', -4) |
+-------------------------------+
| .com |
+-------------------------------+
3.4 從字符串的第 4 個字符位置(倒數)開始取,只取 2 個字符。
mysql> select substring('example.com', -4, 2);
+----------------------------------+
| substring('example.com', -4, 2) |
+----------------------------------+
| .c |
+----------------------------------+
咱們注意到在函數 substring(str,pos, len)中, pos 能夠是負值,但 len 不能取負值。
4. 字符串截取:substring_index(str,delim,count)
4.1 截取第二個 '.' 以前的全部字符。
mysql> select substring_index('www.example.com.cn', '.', 2);
+------------------------------------------------+
| substring_index('www.example.com.cn', '.', 2) |
+------------------------------------------------+
| www.example |
+------------------------------------------------+
4.2 截取第二個 '.' (倒數)以後的全部字符。
mysql> select substring_index('www.example.com.cn', '.', -2);
+-------------------------------------------------+
| substring_index('www.example.com.cn', '.',- 2) |
+-------------------------------------------------+
| com.cn |
+-------------------------------------------------+
4.3 若是在字符串中找不到 delim 參數指定的值,就返回整個字符串
mysql> select substring_index('www.example.com.cn', '.coc', 1);
+---------------------------------------------------+
| substring_index('www.example.com', '.coc', 1) |
+---------------------------------------------------+
| www.example.com.cn | +---------------------------------------------------+