2 ---------------------------------------------------------
4 ---------------------------------------------------------
11 echo select min
(t1.f2
) from t1 group by t1.f1
;
12 ---------------------------------------------------------
14 ---------------------------------------------------------
21 echo select avg
(t1.f2
) from t1 group by t1.f1
;
22 ---------------------------------------------------------
24 ---------------------------------------------------------
31 echo select sum(t1.f2
) from t1 group by notexist
;
32 Statement prepare failed with error
-19
33 echo select sum(t1.f2
) from t1 group by t1.notexist
;
34 Statement prepare failed with error
-19
35 echo select sum(t1.f2
) from t1 group by notexist.f1
;
36 Statement prepare failed with error
-19