我怎样才能对 concat 进行分组?这是我的查询
select t.date, group_concat(count(*)) from table1 t
group by t.date
但它返回错误“无效使用组功能”
如果我使用这样的查询
select t.date, count(*) from table1 t
group by t.date
然后它返回以下输出,但我想 group_concat 这个输出
2011-01-01 100
2011-01-02 97
2011-01-03 105