MySQL中group_concat函數深刻理解

group_concat(),手冊上說明:該函數返回帶有來自一個組的鏈接的非NULL值的字符串結果。mysql

 
 
通俗點理解,實際上是這樣的:group_concat()會計算哪些行屬於同一組,將屬於同一組的列顯示出來。要返回哪些列,
由函數參數(就是字段名)決定。分組必須有個標準,就是根據group by指定的列進行分組。
 
group_concat函數應該是在內部執行了group by語句,這是個人猜想。
 
1.測試語句:SELECT group_concat(town) FROM `players` group by town
 
結果去查找town中去查找哪些值是同樣的,若是相等,就所有列出來,以逗號分割進行列出,以下:
 
group_concat(town)
 
北京,北京
長沙
 
 
2.測試:SELECT group_concat( town )
FROM players
結果:
group_concat(town)
長沙,北京,北京,
 
上面是否能夠證實,group_concat只有與group by語句同時使用才能產生效果
下面進行了實際測驗
 
3.測試常量對group_concat()的配置影響:
SET @@GROUP_CONCAT_MAX_LEN=4
手冊中提到設置的語法是這樣的:
SET [SESSION | GLOBAL] group_concat_max_len = val;
 
兩種有什麼區別?
 
SET @@global.GROUP_CONCAT_MAX_LEN=4;
global能夠省略,那麼就變成了:SET @@GROUP_CONCAT_MAX_LEN=4;
 
 
4.使用語句 SELECT group_concat(town) FROM `players`。結果獲得:
group_concat(town)
長沙,北京,長沙,北京
結論:group_concat()函數須要與group by語句在一塊兒使用,才能獲得須要的效果。
緣由能夠這樣理解:group_concat()獲得是屬於x組的全部成員(函數裏面列參數指定須要顯示哪些字段)。x組從哪裏來?如
 
果沒有group by進行指定,那麼根本不知道group_concat()根據哪一個分組進行顯示出成員。 因此,像上面沒有group by子句
 
的時候,就顯示了長沙和北京。
 
 
實際中何時須要用到這個函數?
假如須要查詢的結果是這樣:左邊顯示組名,右邊想顯示該組別下的全部成員信息。用這個函數,就能夠省去不少事情了。
 
另外,假如我這樣使用:SELECT group_concat( name, sex ) FROM `players` town。意義不大。group_concat()指定一個
 
列是最好的狀況。若是指定了多個列。那麼顯示結果相似這樣:
 
group_concat(name,sex)
王滔,王小明男,劉惠女,舒明女
 

另一遍:sql

MySQL中group_concat函數
完整的語法以下:
group_concat([DISTINCT] 要鏈接的字段 [Order BY ASC/DESC 排序字段] [Separator '分隔符'])session


基本查詢
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)ide


以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(不夠用再加大)。解決該問題it

相關文章
相關標籤/搜索