Files
doris/regression-test/suites/with_clause_p0/sql/withExprReferencedInWhereClause.sql
2022-09-29 10:45:17 +08:00

4 lines
257 B
SQL

-- database: presto; groups: with_clause; tables: nation,region; queryType: SELECT
WITH wregion AS (select min(regionkey) from tpch_tiny_nation where name >= 'N')
select r_regionkey, r_name from tpch_tiny_region where r_regionkey IN (SELECT * FROM wregion)