1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

add VARIANCE function

This commit is contained in:
vva@eagle.mysql.r18.ru
2002-12-14 03:36:59 +04:00
parent 710881e4fb
commit b624df724b
14 changed files with 129 additions and 62 deletions

View File

@ -62,4 +62,8 @@ select Fld1, max(Fld2) from t1 group by Fld1 having std(Fld2) is not null;
Fld1 max(Fld2)
1 20
3 50
select Fld1, max(Fld2) from t1 group by Fld1 having variance(Fld2) is not null;
Fld1 max(Fld2)
1 20
3 50
drop table t1;