I have a database column that contains comma separated values and I want to search in that column by passing comma separated values and it should return that record if any of the given value matches.
For example: the column contains a,b,c,d,e
, the input is d,c,h
then it should return this record.
The sequence does not matter here and also its not necessary that all the values should match, even if single value matches then also record should be returned.