发布网友 发布时间:2022-04-23 08:07
共2个回答
懂视网 时间:2022-04-30 04:04
-- Non-scalar parameters require additional processing files tyt_gas2014_search; temp tyo_gas2014_search:=tyo_gas2014_search(‘CREATOR‘,1,‘test‘,1); temp1 tyo_gas2014_search:=tyo_gas2014_search(‘CREATETIME‘,4,‘2015/4/17 0:00:00‘,3); temp2 tyo_gas2014_search:=tyo_gas2014_search(‘CREATETIME‘,3,‘2015/6/18 0:00:00‘,3); begin -- Call the procedure files := tyt_gas2014_search(); files.extend(3); files(1):= temp; files(2):= temp1; files(3):= temp2; pkg_gas2014_pagehelp.p_gas2014_gettablepagewhere(files => files, sqlwhere => :sqlwhere); end;
oracle调用array参数存储过程
标签:
热心网友 时间:2022-04-30 01:12
sqlplus或者PL/SQL SQL窗口输入(单独调用存储过程):无参数EXEC 过程名;或者BEGIN过程名END; IN 参数EXEC 过程名(入参数..);或者BEGIN过程名(入参数...)END; OUT参数,IN OUT参数variable 绑定变量名 数据类型; //定义一个变量接收出参数的值;EXEC 过程名(:绑定变量名);