如何执行使用WITH
.准备的数据的多条语句 例如:
WITH t1 AS
(
....using some table
),
t2 as
(
....using t1 and some other tables
),
t3 as
(
..using t1 and t2 and some other tables
)
statement 1; (let say this is using t1 and t2)
statement 2; (let say this is using t2 and t3)
我怎样才能在 Oracle 中做到这一点?