Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下のように書けばよいでしょうか。しかし、これはWinSQL / Teradataで適切な出力を提供していません
with a (x) as ( select 1 ), b (y) as ( select * from a ) select * from b
従属を最初に呼び出し、次にこのように親を呼び出すと、機能します。なぜそうなのか?Teradata は、人々がより長く遊んでより多くの時間を費やすことを好み、それが重要であると感じさせます
with "b" (y) as ( select * from "a" ), "a" (x) as ( select '1' ) select * from b