5 lines
174 B
SQL
5 lines
174 B
SQL
-- database: presto; groups: with_clause; tables: nation; queryType: SELECT
|
|
WITH w1 AS (select * from tpch_tiny_nation),
|
|
w2 AS (select * from w1)
|
|
select count(*) from w1, w2
|