In Oracle SQL, I can create a dummy table thanks to the code shown below:
select crca.*
from my_real_table real_table,
table(ntde.ENCRYPT_ALL(:inputParam)) enc
where
...
I would like to be able to do same thing without using ntde.ENCRYPT_ALL
, I would like to do something like that:
select crca.*
from my_real_table real_table,
table(:inputParam) enc
where
...
It does not work and I get this error:
- 00000 - "cannot access rows from a non-nested table item"
*Cause: attempt to access rows of an item whose type is not known at
parse time or that is not of a nested table type
*Action: use CAST to cast the item to a nested table type
Do you know how to do that please?