mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
10 lines
317 B
MySQL
10 lines
317 B
MySQL
|
DROP TABLE IF EXISTS t;
|
||
|
|
||
|
CREATE TABLE t (a Int, b Int, c Int) ENGINE = MergeTree ORDER BY tuple();
|
||
|
INSERT INTO t SELECT number, number * 2, number * 3 FROM numbers(100);
|
||
|
|
||
|
SELECT count() FROM t PREWHERE NOT ignore(a) WHERE b > 0;
|
||
|
SELECT sum(a) FROM t PREWHERE isNotNull(a) WHERE isNotNull(b) AND c > 0;
|
||
|
|
||
|
DROP TABLE t;
|