mysql中concat函式
使用方法:
concat(str1,str2,…)
返回結果為連線引數產生的字串。如有任何乙個引數為null ,則返回值為 null。
注意:如果所有引數均為非二進位制字串,則結果為非二進位制字串。
如果自變數中含有任一二進位制字串,則結果為乙個二進位制字串。
乙個數字引數被轉化為與之相等的二進位制字串格式;若要避免這種情況,可使用顯式型別 cast, 例如:
select concat(cast(int_col as char), char_col)
mysql的concat函式可以連線乙個或者多個字串,如
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
mysql> select concat(』11′,』22′,null);
+————————+
| concat(』11′,』22′,null) |
+————————+
| null |
+————————+
1 row in set (0.00 sec)
mysql中concat_ws函式
使用方法:
concat_ws(separator,str1,str2,…)
concat_ws() 代表 concat with separator ,是concat()的特殊形式。第乙個引數是其它引數的分隔符。分隔符的位置放在要連線的兩個字串之間。分隔符可以是乙個字串,也可以是其它引數。
注意:如果分隔符為 null,則結果為 null。函式會忽略任何分隔符引數後的 null 值。
如連線後以逗號分隔
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
mysql> select concat_ws(『,』,』11′,』22′,null);
+——————————-+
| concat_ws(『,』,』11′,』22′,null) |
+——————————-+
| 11,22 |
+——————————-+
1 row in set (0.00 sec)
mysql中group_concat函式
完整的語法如下:
group_concat([distinct] 要連線的字段 [order by asc/desc 排序字段] [separator '分隔符'])
基本查詢
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欄位的值列印在一行,逗號分隔(預設)
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欄位的值列印在一行,分號分隔
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欄位的值列印在一行,
逗號分隔
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排倒序
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)
repeat()函式
用來複製字串,如下』ab』表示要複製的字串,2表示複製的份數
mysql> select repeat(『ab』,2);
+—————-+
| repeat(『ab』,2) |
+—————-+
| abab |
+—————-+
1 row in set (0.00 sec)
又如mysql> select repeat(『a』,2);
+—————+
| repeat(『a』,2) |
+—————+
| aa |
+—————+
1 row in set (0.00 sec)
MySQL字串連線函式repeat
mysql字串連線函式repeat 的語法是我們都需要掌握的,下面就為您介紹一些該mysql字串連線函式的知識,供您參考學習。mysql字串連線函式 repeat 函式 該函式用來複製字串,如下 ab 表示要複製的字串,2表示複製的份數 mysql select repeat ab 2 repeat...
SQL CONCAT 字串連線函式
有的時候,我們有需要將由不同字段獲得的資料串連在一起。每一種資料庫都有提供方法來達到這個目的 mysql concat oracle concat sql server concat 的語法如下 concat 字串1,字串2,字串3,將字串1 字串2 字串3,等字串連在一起。請注意,oracle的c...
SQL CONCAT 字串連線函式
有的時候,我們有需要將由不同字段獲得的資料串連在一起。每一種資料庫都有提供方法來達到這個目的 concat 的語法如下 concat 字串1,字串2,字串3,將字串1 字串2 字串3,等字串連在一起。請注意,oracle的concat 只允許兩個引數 換言之,一次只能將兩個字串串連起來。不過,在or...