MySQL中group_concat函數深刻懂得。本站提示廣大學習愛好者:(MySQL中group_concat函數深刻懂得)文章只能為提供參考,不一定能成為您想要的結果。以下是MySQL中group_concat函數深刻懂得正文
本文經由過程實例引見了MySQL中的group_concat函數的應用辦法,好比select group_concat(name) 。
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)
應用group_concat_max_len體系變量,你可以設置許可的最年夜長度。 法式中停止這項操作的語法以下,個中 val 是一個無符號整數:
SET [SESSION | GLOBAL] group_concat_max_len = val;
若曾經設置了最年夜長度, 則成果被截至這個最年夜長度。
將情況變量group_concat_max_len 增年夜。默許是1024.我就設置了session級的情況變量將其變成2048(不敷用再加年夜)。處理該成績