Hi,
I have requirement in which I have to use multiple values in IN condition at run time.
For eg: I am storing multiple values in a variable and that variable I want to pass in the IN condition but if i used variable the query is going into error. At run time the values keep changing in the variable.
v_temp = '712,713';
select * from temp
where column in (v_temp);
Please help.
Thanks,
Suresh