ClickHouse/docs/zh/sql-reference/aggregate-functions/reference/uniqexact.md
2021-03-25 17:09:19 +08:00

911 B

toc_priority
191

uniqExact

计算不同参数值的准确数目。

语法

uniqExact(x[, ...])

如果你绝对需要一个确切的结果,使用 uniqExact 函数。 否则使用 uniq 函数。

uniqExact 函数比 uniq 使用更多的内存,因为状态的大小随着不同值的数量的增加而无界增长。

参数

该函数采用可变数量的参数。 参数可以是 Tuple, Array, Date, DateTime, String,或数字类型。

参见