I'm writing a SQL code using an IN operator. It is working good unless I encountered some records having comma in the strings.
This is where I am failing to fetch those records. For example -: 'Pratik,Sarangi' is a record i want to pass in the IN clause where in it reads as 2 different datas.
I am using Oracle SQL to build the query
select * from table where name in (:name)
where :name is a user input parameter.