Where ... in clause with parameter
Hi,
I'm having a small problem with my where clause.
I have the following select statement
select *
from emp
where empno in (:par)
I want to set a comma separated list as :par, something like '7839,7698,7782'.
But this is not working.
How do I get this select working?
Thanks
chrissy