如何執行使用由WITH
準備的數據的多個語句。 例如:WITH oracle中的多個語句
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中執行此操作?
WITH子句是聲明的一部分。你在尋找類似VIEWs的東西嗎?或者也許是臨時表?或PLSQL集合? –
不以這種方式工作 –
WITH是SQL的一部分。 SQL沒有「可執行語句」。 –