This question is a part of my question how to pass javascript array to oracle store procedure by ado parameter object
I think divide it to 3 small parts will get answer faster.
For this question.
I know we can declare a table type and use
select last_name
from employees in (select * from table(cast(my_table_type_var as my_table_type));
but I always get error from create new package which include a procedure has this. and I read some thread said I need to declear a sql(in schema) type because sql and pl/slq are not using same engine. I try create type in schema by spl*plus, but still get same errors so I need a working package example for this first please.
You need a SQL object to call the
TABLE
operator from aSELECT
. Here's a small example (9iR2):You can use a function here instead (note that my TYPE is still defined outside the package):