I want to send two arrays form java to oracle stored procedures.
The first Array is array of strings and the second is array of chars
how can I make this??
select * from table_a a where a.col in (select regexp_substr('SMITH,ALLEN,WARD,JONES','[^,]+', 1, level) from dual
connect by regexp_substr('SMITH,ALLEN,WARD,JONES', '[^,]+', 1, level) is not null;)