메인 콘텐츠로 건너뛰기

groupBitmapAnd

도입 버전: v20.1.0 비트맵 컬럼에 대해 AND 연산을 수행하고 원소 수(카디널리티)를 반환합니다. 접미사 combinator -State를 추가하면 비트맵 객체를 반환합니다. 구문
groupBitmapAnd(expr)
groupBitmapAndState(expr)
인수 반환 값 UInt64 타입의 카운트 값 또는 -State를 사용할 때 비트맵 객체를 반환합니다. UInt64 예시 사용 예시
Query
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 groupBitmapAnd(z) FROM bitmap_column_expr_test2 WHERE like(tag_id, 'tag%');
Response
┌─groupBitmapAnd(z)─┐
│               3   │
└───────────────────┘
-State combinator 사용하기
Query
SELECT arraySort(bitmapToArray(groupBitmapAndState(z))) FROM bitmap_column_expr_test2 WHERE like(tag_id, 'tag%');
Response
┌─arraySort(bitmapToArray(groupBitmapAndState(z)))─┐
│ [6,8,10]                                         │
└──────────────────────────────────────────────────┘
마지막 수정일 2026년 6월 10일