ClickHouse/tests/queries/0_stateless/01066_bit_count.sql
2023-04-23 11:31:23 +00:00

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');