ClickHouse/tests/queries/0_stateless/01711_cte_subquery_fix.sql

4 lines
131 B
MySQL
Raw Normal View History

2021-02-09 11:54:13 +00:00
drop table if exists t;
create table t engine = Memory as with cte as (select * from numbers(10)) select * from cte;
2021-02-08 16:25:24 +00:00
drop table t;