Hi All,
Can you please help on this, how to appen varray variable to varrary variable
I have an object.. and varray for that object
CREATE OR REPLACE TYPE part_history AS OBJECT ( INVENTORY_ITEM_ID VARCHAR2(20), PART_NUMBER VARCHAR2(100) )
create or replace TYPE PART_HISt_v as VARRAY(2250) OF part_history ;
my_favorites PART_HISt_v;
dad_favorites PART_HISt_v;
lets assume i have inserted 2 rows in my_favorites variable and 2 rows in dad_favorites variable.... now i want to append dad_favorites variable values to my_favorites variable value. how to write this? after appending my_favorites should contain 4 records...