* split up select.md * array-join.md basic refactoring * distinct.md basic refactoring * format.md basic refactoring * from.md basic refactoring * group-by.md basic refactoring * having.md basic refactoring * additional index.md refactoring * into-outfile.md basic refactoring * join.md basic refactoring * limit.md basic refactoring * limit-by.md basic refactoring * order-by.md basic refactoring * prewhere.md basic refactoring * adjust operators/index.md links * adjust sample.md links * adjust more links * adjust operatots links * fix some links * adjust aggregate function article titles * basic refactor of remaining select clauses * absolute paths in make_links.sh * run make_links.sh * remove old select.md locations * translate docs/es * translate docs/fr * translate docs/fa * remove old operators.md location * change operators.md links * adjust links in docs/es * adjust links in docs/es * minor texts adjustments * wip * update machine translations to use new links * fix changelog * es build fixes * get rid of some select.md links * temporary adjust ru links * temporary adjust more ru links * improve curly brace handling * adjust ru as well * fa build fix * ru link fixes * zh link fixes * temporary disable part of anchor checks
9.0 KiB
machine_translated | machine_translated_rev | toc_priority | toc_title |
---|---|---|---|
true | 72537a2d52 |
37 | 组合器 |
聚合函数组合器
聚合函数的名称可以附加一个后缀。 这改变了聚合函数的工作方式。
-如果
The suffix -If can be appended to the name of any aggregate function. In this case, the aggregate function accepts an extra argument – a condition (Uint8 type). The aggregate function processes only the rows that trigger the condition. If the condition was not triggered even once, it returns a default value (usually zeros or empty strings).
例: sumIf(column, cond)
, countIf(cond)
, avgIf(x, cond)
, quantilesTimingIf(level1, level2)(x, cond)
, argMinIf(arg, val, cond)
等等。
使用条件聚合函数,您可以一次计算多个条件的聚合,而无需使用子查询和 JOIN
例如,在Yandex的。Metrica,条件聚合函数用于实现段比较功能。
-阵列
-Array后缀可以附加到任何聚合函数。 在这种情况下,聚合函数采用的参数 ‘Array(T)’ 类型(数组)而不是 ‘T’ 类型参数。 如果聚合函数接受多个参数,则它必须是长度相等的数组。 在处理数组时,聚合函数的工作方式与所有数组元素的原始聚合函数类似。
示例1: sumArray(arr)
-总计所有的所有元素 ‘arr’ 阵列。 在这个例子中,它可以更简单地编写: sum(arraySum(arr))
.
示例2: uniqArray(arr)
– Counts the number of unique elements in all ‘arr’ 阵列。 这可以做一个更简单的方法: uniq(arrayJoin(arr))
,但它并不总是可以添加 ‘arrayJoin’ 到查询。
-如果和-阵列可以组合。 然而, ‘Array’ 必须先来,然后 ‘If’. 例: uniqArrayIf(arr, cond)
, quantilesTimingArrayIf(level1, level2)(arr, cond)
. 由于这个顺序,该 ‘cond’ 参数不会是数组。
-州
如果应用此combinator,则聚合函数不会返回结果值(例如唯一值的数量 uniq 函数),但聚合的中间状态(用于 uniq
,这是用于计算唯一值的数量的散列表)。 这是一个 AggregateFunction(...)
可用于进一步处理或存储在表中以完成聚合。
要使用这些状态,请使用:
- AggregatingMergeTree 表引擎。
- 最后聚会 功能。
- 跑累积 功能。
- -合并 combinator
- -MergeState combinator
-合并
如果应用此组合器,则聚合函数将中间聚合状态作为参数,组合状态以完成聚合,并返回结果值。
-MergeState
以与-Merge combinator相同的方式合并中间聚合状态。 但是,它不会返回结果值,而是返回中间聚合状态,类似于-State combinator。
-ForEach
将表的聚合函数转换为聚合相应数组项并返回结果数组的数组的聚合函数。 例如, sumForEach
对于数组 [1, 2]
, [3, 4, 5]
和[6, 7]
返回结果 [10, 13, 5]
之后将相应的数组项添加在一起。
-OrDefault
更改聚合函数的行为。
如果聚合函数没有输入值,则使用此combinator,它返回其返回数据类型的默认值。 适用于可以采用空输入数据的聚合函数。
-OrDefault
可与其他组合器一起使用。
语法
<aggFunction>OrDefault(x)
参数
x
— Aggregate function parameters.
返回值
如果没有要聚合的内容,则返回聚合函数返回类型的默认值。
类型取决于所使用的聚合函数。
示例
查询:
SELECT avg(number), avgOrDefault(number) FROM numbers(0)
结果:
┌─avg(number)─┬─avgOrDefault(number)─┐
│ nan │ 0 │
└─────────────┴──────────────────────┘
还有 -OrDefault
可与其他组合器一起使用。 当聚合函数不接受空输入时,它很有用。
查询:
SELECT avgOrDefaultIf(x, x > 10)
FROM
(
SELECT toDecimal32(1.23, 2) AS x
)
结果:
┌─avgOrDefaultIf(x, greater(x, 10))─┐
│ 0.00 │
└───────────────────────────────────┘
-OrNull
更改聚合函数的行为。
此组合器将聚合函数的结果转换为 可为空 数据类型。 如果聚合函数没有值来计算它返回 NULL.
-OrNull
可与其他组合器一起使用。
语法
<aggFunction>OrNull(x)
参数
x
— Aggregate function parameters.
返回值
- 聚合函数的结果,转换为
Nullable
数据类型。 NULL
,如果没有什么聚合。
类型: Nullable(aggregate function return type)
.
示例
添加 -orNull
到聚合函数的末尾。
查询:
SELECT sumOrNull(number), toTypeName(sumOrNull(number)) FROM numbers(10) WHERE number > 10
结果:
┌─sumOrNull(number)─┬─toTypeName(sumOrNull(number))─┐
│ ᴺᵁᴸᴸ │ Nullable(UInt64) │
└───────────────────┴───────────────────────────────┘
还有 -OrNull
可与其他组合器一起使用。 当聚合函数不接受空输入时,它很有用。
查询:
SELECT avgOrNullIf(x, x > 10)
FROM
(
SELECT toDecimal32(1.23, 2) AS x
)
结果:
┌─avgOrNullIf(x, greater(x, 10))─┐
│ ᴺᵁᴸᴸ │
└────────────────────────────────┘
-重新采样
允许您将数据划分为组,然后单独聚合这些组中的数据。 通过将一列中的值拆分为间隔来创建组。
<aggFunction>Resample(start, end, step)(<aggFunction_params>, resampling_key)
参数
start
— Starting value of the whole required interval forresampling_key
值。stop
— Ending value of the whole required interval forresampling_key
值。 整个时间间隔不包括stop
价值[start, stop)
.step
— Step for separating the whole interval into subintervals. TheaggFunction
在每个子区间上独立执行。resampling_key
— Column whose values are used for separating data into intervals.aggFunction_params
—aggFunction
参数。
返回值
- 阵列
aggFunction
每个子区间的结果。
示例
考虑一下 people
具有以下数据的表:
┌─name───┬─age─┬─wage─┐
│ John │ 16 │ 10 │
│ Alice │ 30 │ 15 │
│ Mary │ 35 │ 8 │
│ Evelyn │ 48 │ 11.5 │
│ David │ 62 │ 9.9 │
│ Brian │ 60 │ 16 │
└────────┴─────┴──────┘
让我们得到的人的名字,他们的年龄在于的时间间隔 [30,60)
和 [60,75)
. 由于我们使用整数表示的年龄,我们得到的年龄 [30, 59]
和 [60,74]
间隔。
要在数组中聚合名称,我们使用 groupArray 聚合函数。 这需要一个参数。 在我们的例子中,它是 name
列。 该 groupArrayResample
函数应该使用 age
按年龄聚合名称的列。 要定义所需的时间间隔,我们通过 30, 75, 30
参数到 groupArrayResample
功能。
SELECT groupArrayResample(30, 75, 30)(name, age) FROM people
┌─groupArrayResample(30, 75, 30)(name, age)─────┐
│ [['Alice','Mary','Evelyn'],['David','Brian']] │
└───────────────────────────────────────────────┘
考虑结果。
Jonh
是因为他太年轻了 其他人按照指定的年龄间隔进行分配。
现在让我们计算指定年龄间隔内的总人数和平均工资。
SELECT
countResample(30, 75, 30)(name, age) AS amount,
avgResample(30, 75, 30)(wage, age) AS avg_wage
FROM people
┌─amount─┬─avg_wage──────────────────┐
│ [3,2] │ [11.5,12.949999809265137] │
└────────┴───────────────────────────┘