ClickHouse/tests/queries/0_stateless/01711_cte_subquery_fix.sql
2021-02-09 14:54:13 +03:00

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;