在表上运行查询时,group_concat被删除

时间:2013-06-24 14:41:10

标签: mysql group-concat sql-server-group-concat

我有一张看起来像这样的表: enter image description here

,此表包含343行。

我正在尝试对其运行此查询:

create table newTest2 
select function_name, service_name, min(concurrency), substring_index(group_concat(date order by concurrency ), ',',1) as minDate, 
 max(concurrency), substring_index(group_concat(date order by concurrency desc), ',',1) as maxDate , avg(concurrency)
        from conc_intermidate
        group by function_name,service_name;

当我运行查询时它给了我:“行203被GROUP_CONCAT()剪切”,我不知道为什么它给了我这个错误。请帮忙!感谢...

1 个答案:

答案 0 :(得分:7)

感谢RobertRozas为我提供了类似的帖子MySQL “Row 30153 was cut by GROUP_CONCAT()” error 我跑了SET group_concat_max_len=15000;,查询运行得很完美。