Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
ClickHouse launches Claude-powered Agents and House Mates partner program at Open House 2026 Read more →
숫자들의 집합에 비트 단위 OR를 적용합니다.
OR
groupBitOr(expr)
BIT_OR
expr
(U)Int*
CREATE TABLE t (num UInt32) ENGINE = Memory; INSERT INTO t VALUES (44), (28), (13), (85); -- 테스트 데이터: -- 이진수 십진수 -- 00101100 = 44 -- 00011100 = 28 -- 00001101 = 13 -- 01010101 = 85 SELECT groupBitOr(num) FROM t;
-- 결과: -- 이진수 십진수 -- 01111101 = 125 ┌─groupBitOr(num)─┐ │ 125 │ └─────────────────┘
이 페이지가 도움이 되었나요?