Name | Result Data Type | Description |
any | integer | Returns 1 if any row in the table fulfills the where clause, or 0 if no rows fulfill the where clause. |
avg | float, money, date (interval only) | Average (sum/count) The sum of the values must be within the range of the result data type. |
count | integer | Count of non-null occurrences |
max | same as argument | Maximum value |
min | same as argument | Minimum value |
sum | integer, float, money, date (interval only) | Column total |
stddev_pop | float | Compute the population form of the standard deviation (square root of the population variance of the group). |
stddev_samp | float | Computes the sample form of the standard deviation (square root of the sample variance of the group). |
var_pop | float | Computes the population form of the variance (sum of the squares of the difference of each argument value in the group from the mean of the values, divided by the count of the values). |
var_samp | float | Computes the sample form of the variance (sum of the squares of the difference of each argument value in the group from the mean of the values, divided by the count of the values minus 1). |