篩選一批資料的id,列轉行時,發現一部分id被擷取的不見了,遂記錄下來以防忘記。
用了group_concat後,select裡如果使用了limit是不起作用的.
用group_concat連線欄位的時候是有長度限制的,並不是有多少連多少,一旦查詢的資料超過1024,就會自動擷取。但你可以設定一下。
使用group_concat_max_len系統變數,你可以設定允許的最大長度。
程式中進行這項操作的語法如下,其中 val 是乙個無符號整數:
set [session | global] group_concat_max_len = val;
若已經設定了最大長度,則結果被截至這個最大長度。
---------------------------
group_concat將某一字段的值按指定的字元進行累加,系統預設的分隔符是逗號,可以累加的字元長度為1024位元組。可以對這些引數進行修改。
1.先舉乙個簡單的例子
select group_concat(f_a) from t_one group by f_b;
按f_b進行分組查詢,將每組中的f_a進行累加。
2.修改預設的分隔符
select group_concat(f_a separator '_') from t_one group by f_b;
separator 是乙個關鍵字,後面跟著要進行分隔的字元
3.排序
select group_concat(f_a order by f_a separator '_') from t_one group by f_b;
4.修改預設字元大小
1).在mysql配置檔案中加上
group_concat_max_len = 102400 #你要的最大長度
2).可以簡單一點,執行語句,可以設定作用範圍
set global group_concat_max_len=102400;後直接跟包含group_concat 的sql語句即可。
set session group_concat_max_len=102400;後直接跟包含group_concat 的sql語句即可。
5、 select group_concat(cast(id as char(100)) separator ',') from t_one group by f_b;
把執行結果字串轉換為char型別。 方便對應資料庫的型別格式。
group_concat這個函式簡單實現欄位的列轉行設定
一.測試資料準備
mysql> use test;
database changed
mysql> select * from tables;
+------+
| id |
+------+
| 1 |
| 123 |
| 789 |
| 345 |
| 78 |
+------+
5 rows in set (0.00 sec)
二.使用經過
1.以預設的逗號作為分隔符
mysql> select group_concat(id) from tables;
+------------------+
| group_concat(id) |
+------------------+
| 1,123,789,345,78 |
+------------------+
1 row in set (0.00 sec)
2.對id值進行排序後行轉列
mysql> select group_concat(id order by id) from tables;
+------------------------------+
| group_concat(id order by id) |
+------------------------------+
| 1,78,123,345,789 |
+------------------------------+
1 row in set (0.00 sec)
3.使用其他分割符,如*和;等
mysql> select group_concat(id separator '*') from tables;
+--------------------------------+
| group_concat(id separator '*') |
+--------------------------------+
| 1*123*789*345*78 |
+--------------------------------+
1 row in set (0.00 sec)
4.分隔符與排序結合起來用
mysql> select group_concat(id order by id separator '_') from tables;
+--------------------------------------------+
| group_concat(id order by id separator '_') |
+--------------------------------------------+
| 1_78_123_345_789 |
+--------------------------------------------+
1 row in set (0.00 sec)
5.對相同的值分組
mysql> insert into tables values (78);
query ok, 1 row affected (0.00 sec)
mysql> select group_concat(id) from tables group by id;
+------------------+
| group_concat(id) |
+------------------+
| 1 |
| 78,78 |
| 123 |
| 345 |
| 789 |
+------------------+
5 rows in set (0.00 sec)
三.引數設定與限制說明
1.檢視伺服器中設定
mysql> show variables like '%group_concat%';
+----------------------+-------+
| variable_name | value |
+----------------------+-------+
| group_concat_max_len | 1024 |
+----------------------+-------+
1 row in set (0.00 sec)
以上設定的值說明當前是預設長度1kb
2.改變引數值
方法一:修改配置檔案中引數,新增 group_concat_max_len = 10240
方法二:在會話中實現,全域性或當前session中
set global group_concat_max_len=10240;
set session group_concat_max_len=10240;
mysql中 group concat長度限制
這個函式有長度限制,上了多次當。預設長度1024長度。select group concat id from table 要徹底修改,在mysql配置檔案 my.ini 中加上 group concat max len 1 1為最大值或填入你要的最大長度 並重啟mysql 在客戶端執行語句 show...
group concat函式長度限制
select group concat 欄位名 from 表 where a 值 select count 欄位名 from 表 where a 值 查詢的結果集低於自己期望的,於是懷疑mysql做了什麼限制。通過copy結果因為預設是逗號分隔很好計算長度,長度低於count的值 問題解決 改變當前...
解決group concat預設長度限制
sql 查詢結果列拼接成逗號分隔的字串 group concat 有個最大長度的限制,超過最大長度就會被截斷掉,通過下面的語句獲得長度 select global.group concat max len 或者show variables like group concat max len 臨時設定...