This is a pretty basic question, but here goes:
I have an array of VARCHAR2 strings in PL/SQL.
How can I print every element in that array?
This is a pretty basic question, but here goes:
I have an array of VARCHAR2 strings in PL/SQL.
How can I print every element in that array?
for i in my_array.first..my_array.last loop
--print me
end loop;