1、MySQL中,substring() 是截取字符串函數
- 使用語法為:
select substring(str,pos) select substring(str from pos) select substring(str,pos,len) select substring(str from pos for len) select substring('helloWorld', 6, 5) # 返回結果是 "World"
- 參數解釋:
- 第一個參數 str 為要截取的字符串
- 第二個參數 pos 是從第幾個字符開始(包括這個字符)截取
- 第三個參數 len 是表示想要截取的字符串的長度
- 如果只有兩個參數則表示從第 pos 個字符開始截取到最后一個字符
- pos 的值是可以為負數的,當 pos 為 -5 時則表示從字符串的倒數第 5 個字符開始截取
select substring('helloWorld', -5, 3) # 結果為:"Wor"
- 實例用法:
select substring(rand(), 3, 6) # 隨機生成一個 6 位數的字符串
2、MySQL中,concat() 是拼接字符串
- concat(str1,str2,…)
- 返回結果為連接參數產生的字符串。如有任何一個參數為 NULL ,則返回值為 NULL
- MySQL 的 concat 函數可以連接一個或者多個字符串,如
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
mysql>
select
concat(
'10'
);
+
--------------+
| concat(
'10'
) |
+
--------------+
| 10 |
+
--------------+
1 row
in
set
(0.00 sec)
mysql>
select
concat(
'11'
,
'22'
,
'33'
);
+
------------------------+
| concat(
'11'
,
'22'
,
'33'
) |
+
------------------------+
| 112233 |
+
------------------------+
1 row
in
set
(0.00 sec)
|
- MySQL 的 concat 函數在連接字符串的時候,只要其中一個是 NULL,那么將返回 NULL
1
2
3
4
5
6
7
|
mysql>
select
concat(
'11'
,
'22'
,
null
);
+
------------------------+
| concat(
'11'
,
'22'
,
null
) |
+
------------------------+
|
NULL
|
+
------------------------+
1 row
in
set
(0.00 sec)
|
3、MySQL 中 concat_ws 函數
- CONCAT_WS(separator,str1,str2,...)
- CONCAT_WS() 代表 CONCAT With Separator ,是 CONCAT() 的特殊形式。第一個參數是其它參數的分隔符。分隔符的位置放在要連接的兩個字符串之間。分隔符可以是一個字符串,也可以是其它參數。
- 注意:
- 如果分隔符為 NULL,則結果為 NULL。函數會忽略任何分隔符參數后的 NULL 值。
- 如連接后以逗號分隔
1
2
3
4
5
6
7
8
|
mysql>
select
concat_ws(
','
,
'11'
,
'22'
,
'33'
);
+
-------------------------------+
| concat_ws(
','
,
'11'
,
'22'
,
'33'
) |
+
-------------------------------+
| 11,22,33 |
+
-------------------------------+
1 row
in
set
(0.00 sec)
|
- 和 MySQL 中 concat 函數不同的是,concat_ws 函數在執行的時候,不會因為 NULL 值而返回 NULL
1
2
3
4
5
6
7
|
mysql>
select
concat_ws(
','
,
'11'
,
'22'
,
NULL
);
+
-------------------------------+
| concat_ws(
','
,
'11'
,
'22'
,
NULL
) |
+
-------------------------------+
| 11,22 |
+
-------------------------------+
1 row
in
set
(0.00 sec)
|
4、MySQL 中 group_concat 函數
- group_concat([DISTINCT] 要連接的字段 [Order BY ASC/DESC 排序字段] [Separator '分隔符'])
1
2
3
4
5
6
7
8
9
10
11
12
|
mysql>
select
*
from
aa;
+
------+------+
| id|
name
|
+
------+------+
|1 | 10|
|1 | 20|
|1 | 20|
|2 | 20|
|3 | 200 |
|3 | 500 |
+
------+------+
6
rows
in
set
(0.00 sec)
|
- 以 id 分組,把 name 字段的值打印在一行,逗號分隔(默認)
1
2
3
4
5
6
7
8
9
|
mysql>
select
id,group_concat(
name
)
from
aa
group
by
id;
+
------+--------------------+
| id| group_concat(
name
) |
+
------+--------------------+
|1 | 10,20,20|
|2 | 20 |
|3 | 200,500|
+
------+--------------------+
3
rows
in
set
(0.00 sec)
|
- 以 id 分組,把 name 字段的值打印在一行,分號分隔
1
2
3
4
5
6
7
8
9
|
mysql>
select
id,group_concat(
name
separator
';'
)
from
aa
group
by
id;
+
------+----------------------------------+
| id| group_concat(
name
separator
';'
) |
+
------+----------------------------------+
|1 | 10;20;20 |
|2 | 20|
|3 | 200;500 |
+
------+----------------------------------+
3
rows
in
set
(0.00 sec)
|
- 以id分組,把去冗余的name字段的值打印在一行,逗號分隔
1
2
3
4
5
6
7
8
9
|
mysql>
select
id,group_concat(
distinct
name
)
from
aa
group
by
id;
+
------+-----------------------------+
| id| group_concat(
distinct
name
) |
+
------+-----------------------------+
|1 | 10,20|
|2 | 20 |
|3 | 200,500 |
+
------+-----------------------------+
3
rows
in
set
(0.00 sec)
|
- 以 id 分組,把 name 字段的值打印在一行,逗號分隔,以 name 排倒序
1
2
3
4
5
6
7
8
9
|
mysql>
select
id,group_concat(
name
order
by
name
desc
)
from
aa
group
by
id;
+
------+---------------------------------------+
| id| group_concat(
name
order
by
name
desc
) |
+
------+---------------------------------------+
|1 | 20,20,10 |
|2 | 20|
|3 | 500,200|
+
------+---------------------------------------+
3
rows
in
set
(0.00 sec)
|
5、repeat()函數
- 用來復制字符串,如下 'ab' 表示要復制的字符串,2 表示復制的份數
1
2
3
4
5
6
7
8
9
|
mysql>
select
repeat(
'ab'
,2);
+
----------------+
| repeat(
'ab'
,2) |
+
----------------+
| abab |
+
----------------+
1 row
in
set
(0.00 sec)
|
1
2
3
4
5
6
7
8
|
mysql>
select
repeat(
'a'
,2);
+
---------------+
| repeat(
'a'
,2) |
+
---------------+
| aa |
+
---------------+
1 row
in
set
(0.00 sec)
|