我有一个看起来像这样的表:
此表包含 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() 剪切”,我不知道为什么它给了我这个错误。请帮忙!谢谢...