I have added rows from a table into a variable of type dbms_sql.varchar2_table.
select id
bulk collect into collValyes
from tabl1;
collValyes is a variable of type dbms_sql.varchar2_table. Now i have to use collValyes in where clause.Like
update Table2
set Status ='R'
where id in collValyes .
one xecuting above query , I am getting
PLS-00382: expression is of wrong type
I searched a lot on web but did not find the solutions. Please help