I need to convert a condition IN list to a list of string using parameter.
from:
:p_parameter in ('a','b','c')
to:
:p_parameter = (a,b,c)
For example select kod from dual where kod in(:p_parameter)
if the input is :p_parameter in (a,b,c) then the output show
kod
------
a
b
c
Anyone got the idea?
Maybe LISTAGG will help you