ClickHouse/docs/en/sql-reference/aggregate-functions/reference/groupbitmap.md
2022-08-28 10:53:34 -04:00

46 lines
611 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
slug: /en/sql-reference/aggregate-functions/reference/groupbitmap
sidebar_position: 128
---
# groupBitmap
Bitmap or Aggregate calculations from a unsigned integer column, return cardinality of type UInt64, if add suffix -State, then return [bitmap object](../../../sql-reference/functions/bitmap-functions.md).
``` sql
groupBitmap(expr)
```
**Arguments**
`expr` An expression that results in `UInt*` type.
**Return value**
Value of the `UInt64` type.
**Example**
Test data:
``` text
UserID
1
1
2
3
```
Query:
``` sql
SELECT groupBitmap(UserID) as num FROM t
```
Result:
``` text
num
3
```