tags:

views:

732

answers:

2

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?

A: 

Turned out to be pretty simple:

my_array.last
JosephStyons
+1  A: 
for i in my_array.first..my_array.last loop
  --print me
end loop;
darreljnz