Hi Guys,
I'm sending in a comma delimited parameter value to a stored procedure in Oracle. The parameter goes to a WHERE
clause, I'm trying to achieve something like this:
v_topupid = "ABC123, ABC456, ABC789" SELECT * FROM Tbl1 WHERE topup_id IN (v_topupid)
Problem is the select statement does not recognize the commas in between the values, it takes it as a single string so when the stored procedure is executed it returns no values.
instead of regexp_substr function any option will be here Please help me out.