@H_403_5@PPAS 是 EnterpriseDB公司的以Postgresql为基础的数据库产品 Postgres Plus Advised Server。
@H_403_5@下面看例子:
@H_403_5@1
--创建表
CREATE TABLE TABLE2
( COLUMN1 NUMBER(10,0),
COLUMN2 VARCHAR2(20 ),
COLUMN3 VARCHAR2(20 ),
PRIMARY KEY(COLUMN1)
);
@H_403_5@2
--创建类型
create or replace type t_type is object (column2 varchar2(20),column3 varchar2(20));
@H_403_5@3
--创建存储过程
create or replace procedure p_table_test(example t_type ARRAY)
as
v_count int:=0;
begin
select array_length(example,1) into v_count;
forall i in 1..v_count
insert into table2(column1,column2,column3)
values(i,example[i].column2,example[i].column3);
end;
@H_403_5@4
--调用存储过程
DECLARE
v_example t_type ARRAY;
BEGIN
v_example := ARRAY[t_type('meeting','lunch'),t_type('training','presentation')];
exec p_table_test(v_example);
END;
@H_403_5@5 --查结果 dbtest=# select * from table2; column1 | column2 | column3 ---------+----------+-------------- 1 | meeting | lunch 2 | training | presentation (2 行记录)