是否可以从执行块结果中进行选择?我想从中执行一些操作(求和等)。
select t1.*
from
( execute block
returns (
OUT_VALUE integer )
as
begin
...
suspend;
end ) t1
或者
with
t1 as ( execute block ... )
select *
from t1
order by
t1.sort_column
两者都不起作用。有人有建议吗?谢谢!