AVERAGE => AVG

This commit is contained in:
Hamed Masafi 2019-02-10 16:22:21 +03:30
parent f51881be08
commit ce55d7df81
1 changed files with 1 additions and 1 deletions

View File

@ -472,7 +472,7 @@ QString SqlGeneratorBase::agregateText(const AgregateType &t,
return "MAX(" + arg + ")";
case Average:
return "AVERAGE(" + arg + ")";
return "AVG(" + arg + ")";
case Count:
return "COUNT(" + arg + ")";