1

假设我有一个函数,我需要在其中执行多个操作,所有这些操作都取决于一个查询的结果。我能找到的一切都表明我需要在过程之外定义一个临时表,我不想这样做。

我想做类似以下的事情:

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 中是否有合法的方式做这样的事情?

4

1 回答 1

5

您可以定义 PL/SQL 记录类型和关联的表类型。然后你可以发出一个SELECT...BULK COLLECT来填满你的桌子。

declare
  type my_record_type is record (testId number, testvalue number);
  type my_table_type is table of my_record_type index by binary_integer;
  my_table my_table_type;
begin
  select x, y bulk collect into my_table from table_foo;
end;
于 2013-11-07T21:55:43.900 回答