All Products
Search
Document Center

Tablestore:AggregationType

Last Updated:May 09, 2024

AggregationType specifies the aggregation type.

Enumeration value list

  • AGG_AVG specifies the average value.

  • AGG_DISTINCT_COUNT specifies the distinct count of rows.

  • AGG_MAX specifies the maximum value.

  • AGG_MIN specifies the minimum value.

  • AGG_SUM specifies the sum.

  • AGG_COUNT specifies the count of rows.

  • AGG_TOP_ROWS specifies the rows that are obtained from the results of an aggregation operation in each group.

  • AGG_PERCENTILES specifies the percentile statistics.

enum AggregationType {
    AGG_AVG = 1;
    AGG_DISTINCT_COUNT = 6;
    AGG_MAX = 2;
    AGG_MIN = 3;
    AGG_SUM = 4;
    AGG_COUNT = 5;
    AGG_TOP_ROWS = 7;
    AGG_PERCENTILES = 8;
}