Warning: (1260, 'Row xxx was cut by GROUP_CONCAT()')

Posted wqbin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Warning: (1260, 'Row xxx was cut by GROUP_CONCAT()')相关的知识,希望对你有一定的参考价值。

mysql数据库查询时,使用group_concat报错“Row XXX was cut by GROUP_CONCAT()”,查了下是因为group_concat有个最大长度的限制,超过最大长度就会被截断掉,

我们检查一下mysql的全局环境变量:

mysql> SELECT @@global.group_concat_max_len;
+-------------------------------+
| @@global.group_concat_max_len |
+-------------------------------+
|                          1024 |
+-------------------------------+

检查一下是将生产环境的查询字段的的最大长度:

mysql> select max(length(extra)) from credit.apply;
+--------------------+
| max(length(extra)) |
+--------------------+
|               9599 |
+--------------------+

再检查一下最大聚合次数

mysql> select max(c1) from (select custid,count(1) as c1 from  credit.apply group by custid )t;
+---------+
| max(c1) |
+---------+
|      58 |
+---------+

 

所以估计最大可能出现的长度为

9599 *58+67=556809

可以改变group_concat_max_len变量解决该问题:

SET group_concat_max_len=556809;

 

以上是关于Warning: (1260, 'Row xxx was cut by GROUP_CONCAT()')的主要内容,如果未能解决你的问题,请参考以下文章

DataTables warning: Requested unknown parameter '0' from the data source for row '0'

DataTables warning: TABLE id=DataTables_Table_0 - Requested UNKNOWN parameter '7' FOR ROW 0(

vue“或“-多条件判断

vue“或“-多条件判断

vue“或“-多条件判断

vue“或“-多条件判断