mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 12:14:18 +00:00
12 lines
249 B
SQL
12 lines
249 B
SQL
drop table if exists a;
|
|
drop table if exists b;
|
|
|
|
create table a (i int, j int) engine Log;
|
|
create materialized view b engine Log as select countState(*) from a;
|
|
|
|
insert into a values (1, 2);
|
|
select countMerge(*) from b;
|
|
|
|
drop table b;
|
|
drop table a;
|