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