count
Introduced in: v1.1.0 Counts the number of rows or not-NULL values. ClickHouse supports the following syntaxes forcount:
count(expr)orCOUNT(DISTINCT expr).count()orCOUNT(*). Thecount()syntax is ClickHouse-specific.
COUNT(DISTINCT ...) syntax.
The behavior of this construction depends on the count_distinct_implementation setting.
It defines which of the uniq* functions is used to perform the operation.
The default is the uniqExact function.
The SELECT count() FROM table query is optimized by default using metadata from MergeTree.
If you need to use row-level security, disable optimization using the optimize_trivial_count_query setting.
However SELECT count(nullable_column) FROM table query can be optimized by enabling the optimize_functions_to_subcolumns setting.
With optimize_functions_to_subcolumns = 1 the function reads only null subcolumn instead of reading and processing the whole column data.
The query SELECT count(n) FROM table transforms to SELECT sum(NOT n.null) FROM table.
Syntax
expr— Optional. An expression. The function counts how many times this expression returned not null.Expression
UInt64
Examples
Basic row count
Query
Response
Query
Response