core reorg
[csql.git] / test / sql / Aggregate / aggregate5.sql
blob7d57755a95261985d40d994a6e99f0d54347d7d6
2 echo select t1.f2, t1.f1, t2.f1 from t1,t2;
3 select t1.f2, t1.f1, t2.f1 from t1,t2;
5 echo select t1.f2, t1.f1, t2.f1 from t1,t2 group by t1.f2;
6 select t1.f2, t1.f1, t2.f1 from t1,t2 group by t1.f2;
8 echo select t1.f2, max(t1.f1), sum(t2.f1) from t1, t2 group by t1.f2;
9 select t1.f2, max(t1.f1), sum(t2.f1) from t1, t2 group by t1.f2;
11 echo select f1, f2 from t1 group by f1,f2;
12 select f1, f2 from t1 group by f1,f2;
14 echo select f1, sum(f2) from t1 group by f3;
15 select f1, sum(f2) from t1 group by f3;