Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
複数の数値に対してビット単位の OR を適用します。
OR
groupBitOr(expr)
BIT_OR
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 groupBitOr(num) FROM t;
125
このページは役に立ちましたか?