mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 17:12:03 +00:00
20 lines
625 B
SQL
20 lines
625 B
SQL
SELECT bitCount(number) FROM numbers(10);
|
|
SELECT avg(bitCount(number)) FROM numbers(256);
|
|
|
|
SELECT bitCount(0);
|
|
SELECT bitCount(1);
|
|
SELECT bitCount(-1);
|
|
|
|
SELECT bitCount(toInt64(-1));
|
|
SELECT bitCount(toInt32(-1));
|
|
SELECT bitCount(toInt16(-1));
|
|
SELECT bitCount(toInt8(-1));
|
|
|
|
SELECT x, bitCount(x), hex(reinterpretAsString(x)) FROM VALUES ('x Float64', (1), (-1), (inf));
|
|
|
|
SELECT toFixedString('Hello, world!!!!', 16) AS x, bitCount(x);
|
|
|
|
SELECT length(replaceAll(bin('clickhouse cloud'), '0', ''));
|
|
SELECT bitCount('clickhouse cloud');
|
|
SELECT length(replaceAll(bin('clickhouse cloud'), '0', '')) = bitCount('clickhouse cloud');
|