mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
4 lines
131 B
SQL
4 lines
131 B
SQL
drop table if exists t;
|
|
create table t engine = Memory as with cte as (select * from numbers(10)) select * from cte;
|
|
drop table t;
|