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.
일련의 숫자에 비트 단위 AND를 적용합니다.
AND
groupBitAnd(expr)
BIT_AND
expr
(U)Int*
CREATE TABLE t (num UInt32) ENGINE = Memory; INSERT INTO t VALUES (44), (28), (13), (85); -- Test data: -- binary decimal -- 00101100 = 44 -- 00011100 = 28 -- 00001101 = 13 -- 01010101 = 85 SELECT groupBitAnd(num) FROM t;
4
이 페이지가 도움이 되었나요?