284
284
select sql_big_result trim(v),count(c) from t1 group by v limit 10;
285
285
select c,count(*) from t1 group by c limit 10;
286
286
select c,count(t) from t1 group by c limit 10;
288
287
select t,count(*) from t1 group by t limit 10;
289
288
select t,count(t) from t1 group by t limit 10;
290
289
select sql_big_result trim(t),count(t) from t1 group by t limit 10;