假设我有一个函数,我需要在其中执行多个操作,所有这些操作都取决于一个查询的结果。我能找到的一切都表明我需要在过程之外定义一个临时表,我不想这样做。
我想做类似以下的事情:
create or replace function f_example(
a_input in number
)
return varchar2 is
begin
create local temporary table tempIDs
(
testID number(6, 0)
, testValue number(8,0)
);
//select data from tableFoo that will be overwritten by a_input into tempIDs
//update data in tableFoo with a_input & store old data in another tableFoo field
end f_example;
此语法不起作用。Oracle 不允许在函数内“创建”。
我并不是真正的数据库程序员——我习惯于使用 C# 和 Java 工作。在这种情况下,我会将我的值存储在方法完成时超出范围的本地数组(或其他)中。在 Oracle SQL 中是否有合法的方式做这样的事情?