Hi all,
I was wondering if a way of doing
select * from table name where
column in array ();
without looping as below;
for i in 1 .. 100 loop
select * from table name where
column_name=array (i);
end loop;
which would mean retriving the values one by one which is not so good as the select is part of a long cursor.
thanks for any help.
I was wondering if a way of doing
select * from table name where
column in array ();
without looping as below;
for i in 1 .. 100 loop
select * from table name where
column_name=array (i);
end loop;
which would mean retriving the values one by one which is not so good as the select is part of a long cursor.
thanks for any help.