Module rorm::aggregate

source ·
Expand description

Aggregation functions

Structs

  • A column to select and call a aggregation function on
  • Returns the average value of all non-null values. The result of avg is a floating point value, except all input values are null, than the result will also be null.
  • Returns the count of the number of times that the column is not null.
  • Returns the maximum value of all values in the group. If there are only null values in the group, this function will return null.
  • Returns the minimum value of all values in the group. If there are only null values in the group, this function will return null.
  • Returns the summary off all non-null values in the group. If there are only null values in the group, this function will return null.

Traits