how can we get the value of of VARRAY from IN Parameter in procedure
问题 I am new to PL/SQL... In Varray how can i get multiple value from IN parameter..... else Is there another ways to get the values... I want to interate the values through VArray... if any other options then its fine.. coding: CREATE OR REPLACE PROCEDURE dynamic_query_build( vr_plan_sku_id IN VARCHAR2 ) IS type plan_sku_id_array IS VARRAY(999) OF VARCHAR2(5000); plan_sku_id plan_sku_id_array; total INTEGER; vrx_plan_sku_id VARCHAR2(3000); BEGIN vrx_plan_sku_id:= REPLACE(vr_plan_sku_id,',',chr