> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8a08bda2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> 비트맵 컬럼에 대해 OR 연산을 수행하고 UInt64 타입의 카디널리티를 반환합니다. 접미사 -State를 추가하면 비트맵 객체를 반환합니다. 이는 `groupBitmapMerge`와 동일합니다.

# groupBitmapOr

<div id="groupBitmapOr">
  ## groupBitmapOr
</div>

도입 버전: v20.1.0

비트맵 컬럼에 대해 OR 연산을 수행하고 카디널리티를 반환합니다.
접미사 combinator [`-State`](/ko/reference/functions/aggregate-functions/combinators#-state)를 추가하면 비트맵 객체를 반환합니다.
이는 `groupBitmapMerge`([`groupBitmap`](/ko/reference/functions/aggregate-functions/groupBitmap)에 [`-Merge`](/ko/reference/functions/aggregate-functions/combinators#-merge) combinator 접미사를 적용한 것)와 동일합니다.

**구문**

```sql theme={null}
groupBitmapOr(expr)
groupBitmapOrState(expr)
```

**인수**

* `expr` — `AggregateFunction(groupBitmap, UInt*)` 타입이 되는 표현식입니다. [`AggregateFunction(groupBitmap, UInt*)`](/ko/reference/data-types/aggregatefunction)

**반환 값**

`UInt64` 타입의 개수를 반환하거나, `-State`를 사용하는 경우 비트맵 객체를 반환합니다. [`UInt64`](/ko/reference/data-types/int-uint)

**예시**

**사용 예시**

```sql title=Query theme={null}
CREATE TABLE bitmap_column_expr_test2
(
    tag_id String,
    z AggregateFunction(groupBitmap, UInt32)
)
ENGINE = MergeTree
ORDER BY tag_id;

INSERT INTO bitmap_column_expr_test2 VALUES ('tag1', bitmapBuild(cast([1,2,3,4,5,6,7,8,9,10] AS Array(UInt32))));
INSERT INTO bitmap_column_expr_test2 VALUES ('tag2', bitmapBuild(cast([6,7,8,9,10,11,12,13,14,15] AS Array(UInt32))));
INSERT INTO bitmap_column_expr_test2 VALUES ('tag3', bitmapBuild(cast([2,4,6,8,10,12] AS Array(UInt32))));

SELECT groupBitmapOr(z) FROM bitmap_column_expr_test2 WHERE like(tag_id, 'tag%');
```

```response title=Response theme={null}
┌─groupBitmapOr(z)─┐
│             15   │
└──────────────────┘
```

**-State combinator 사용하기**

```sql title=Query theme={null}
SELECT arraySort(bitmapToArray(groupBitmapOrState(z))) FROM bitmap_column_expr_test2 WHERE like(tag_id, 'tag%');
```

```response title=Response theme={null}
┌─arraySort(bitmapToArray(groupBitmapOrState(z)))─┐
│ [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]           │
└─────────────────────────────────────────────────┘
```
