1. 程式人生 > >Mysql GROUP_CONCAT 使用註意事項

Mysql GROUP_CONCAT 使用註意事項

source sources div 結果 圖片 pos 命令 value sep

GROUP_CONCAT 函數返回一個字符串結果,該結果由分組中的值連接組合而成,常和 GROUP BY 連用。

如果需要自定義分隔符可以使用 SEPARATOR。

示例:

SELECT GROUP_CONCAT(id) ids FROM sys_oem_resources WHERE pid IS NOT NULL GROUP BY pid;

技術分享圖片

SELECT GROUP_CONCAT(id SEPARATOR ‘*‘) ids FROM sys_oem_resources WHERE pid IS NOT NULL GROUP BY pid;

技術分享圖片

註意示例:

別亂用 GROUP_CONCAT,說不定你現在使用的 GROUP_CONCAT 得到的結果就是隱藏著BUG的。

GROUP_CONCAT 的結果會受到 group_concat_max_len 變量的限制。

默認 group_concat_max_len = 1024,即字符串的長度字節超過1024 則會被截斷。

通過命令 "show variables like ‘group_concat_max_len‘ " 來查看 GROUP_CONCAT 默認的長度:

mysql> show variables like ‘group_concat_max_len‘;
+----------------------+-------+
| Variable_name | Value |
+----------------------+-------+
| group_concat_max_len | 1024 |
+----------------------+-------+
1 row in set

在MySQL配置文件中添加配置:group_concat_max_len = -1 (-1為最大值或根據實際需求設置長度),配置後需要重啟MySQL服務,查看如下所示:

mysql> show variables like ‘group_concat_max_len‘;
+----------------------+------------+
| Variable_name | Value |
+----------------------+------------+
| group_concat_max_len | 4294967295 |
+----------------------+------------+
1 row in set

Mysql GROUP_CONCAT 使用註意事項