In Oracle, total 36 record i am getting by using PL/SQL variable type v_arr is varray(25) of varchar2(20)
. Inside the PL/SQL block i am using 2 different FOR loop
for 2 different operation. in the 1st time i am using
For i in 1 .. v_arr.count(20) loop
and for the next time i used for i in v_arr.count(21) .. v_arr.count loop
.
after compile i got error in both the condition. How to resolve this issue. Please help me.