Applies to: CELONIS 4.0 CELONIS 4.2 CELONIS 4.3 CELONIS 4.4
Description
In general, only one aggregation is calculated for a query. With a global aggregation it is possible to calculate an additional aggregation function over all values of a column.
GLOBAL calculates an aggregation function for an aggregation to which all values are aggregated into one group. Like normal aggregations, a global aggregation function take filters and selections into account. Values which are filtered out are not part of the result. Therefore if a filter or a selection is changed every global aggregation function is recalculated.
Как правило, для запроса рассчитывается только одна агрегация. С помощью глобальной агрегации можно рассчитать дополнительную функцию агрегирования по всем значениям столбца.
GLOBAL вычисляет функцию агрегации для агрегации, в которую все значения объединяются в одну группу.
Как и обычные агрегаты, глобальная функция агрегации учитывает фильтры и выборки. Отфильтрованные значения не являются частью результата. Поэтому, если фильтр или выбор изменяется, каждая глобальная функция агрегации пересчитывается.
Syntax
GLOBAL ( AVG ( table.column ) ) |
GLOBAL ( COUNT ( table.column ) ) |
GLOBAL ( COUNT ( DISTINCT table.column ) ) |
GLOBAL ( MAX ( table.column ) ) |
GLOBAL ( MEDIAN ( table.column ) ) |
GLOBAL ( MIN ( table.column ) ) |
GLOBAL ( QUANTILE ( table.column, quantile ) ) |
GLOBAL ( STDEV ( table.column ) ) |
GLOBAL ( SUM ( table.column ) ) |
GLOBAL ( TRIMMED_MEAN ( table.column ) ) |
GLOBAL ( VAR ( table.column ) ) |
Note
The result of GLOBAL can not be used as a grouper column for an aggregation.
Результат GLOBAL нельзя использовать в качестве столбца группирования для агрегации.
Examples