ClickHouse/docs/zh/sql-reference/aggregate-functions/reference/uniq.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.4 KiB
Markdown
Raw Normal View History

2021-02-02 12:00:41 +00:00
---
2022-08-26 19:07:59 +00:00
slug: /zh/sql-reference/aggregate-functions/reference/uniq
2022-04-10 23:08:18 +00:00
sidebar_position: 190
2021-02-02 12:00:41 +00:00
---
# uniq {#agg_function-uniq}
2021-02-08 07:18:46 +00:00
计算参数的不同值的近似数量。
**语法**
2021-02-02 12:00:41 +00:00
``` sql
uniq(x[, ...])
```
2021-02-08 07:18:46 +00:00
**参数**
2021-02-02 12:00:41 +00:00
2021-02-08 07:18:46 +00:00
该函数采用可变数量的参数。 参数可以是 `Tuple`, `Array`, `Date`, `DateTime`, `String`, 或数字类型。
2021-02-02 12:00:41 +00:00
2021-02-08 07:18:46 +00:00
**返回值**
2021-02-02 12:00:41 +00:00
2021-02-08 07:18:46 +00:00
- [UInt64](../../../sql-reference/data-types/int-uint.md) 类型数值。
2021-02-02 12:00:41 +00:00
2021-02-08 07:18:46 +00:00
**实现细节**
2021-02-02 12:00:41 +00:00
2021-02-08 07:18:46 +00:00
功能:
2021-02-02 12:00:41 +00:00
2021-02-08 07:18:46 +00:00
- 计算聚合中所有参数的哈希值,然后在计算中使用它。
2021-02-02 12:00:41 +00:00
2021-02-08 07:18:46 +00:00
- 使用自适应采样算法。 对于计算状态该函数使用最多65536个元素哈希值的样本。
2021-02-02 12:00:41 +00:00
2021-02-08 07:18:46 +00:00
这个算法是非常精确的并且对于CPU来说非常高效。如果查询包含一些这样的函数那和其他聚合函数相比 `uniq` 将是几乎一样快。
2021-02-02 12:00:41 +00:00
2021-02-08 07:18:46 +00:00
- 确定性地提供结果(它不依赖于查询处理顺序)。
2021-02-02 12:00:41 +00:00
2021-02-08 07:18:46 +00:00
我们建议在几乎所有情况下使用此功能。
2021-02-02 12:00:41 +00:00
2021-02-08 07:18:46 +00:00
**参见**
2021-02-02 12:00:41 +00:00
- [uniqCombined](../../../sql-reference/aggregate-functions/reference/uniqcombined.md#agg_function-uniqcombined)
- [uniqCombined64](../../../sql-reference/aggregate-functions/reference/uniqcombined64.md#agg_function-uniqcombined64)
- [uniqHLL12](../../../sql-reference/aggregate-functions/reference/uniqhll12.md#agg_function-uniqhll12)
- [uniqExact](../../../sql-reference/aggregate-functions/reference/uniqexact.md#agg_function-uniqexact)