我需要从mule调用sql函数,我需要知道语法被声明为查询键的一部分
示例sql脚本:
create or replace type testArray as table of varchar2(30);
create or replace function getTestArray return testArray as
t_data testArray := testArray(); begin
for i in 1 .. 10 loop
t_data.extend;
t_data(t_data.count) := 'entry ' || i;
end loop;
return t_data;
end;
我需要调用getTestArray函数。请告诉我如何声明mule查询键来调用函数。