mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 17:44:23 +00:00
6 lines
236 B
SQL
6 lines
236 B
SQL
drop table if exists data_02021;
|
|
create table data_02021 (key Int) engine=MergeTree() order by key;
|
|
insert into data_02021 values (1);
|
|
select count() from data_02021 prewhere 1 or ignore(key) where ignore(key)=0;
|
|
drop table data_02021;
|