How to filter an SQL table on the basis of a VALUE that exist in its CSV column. In detail, I have a table that has a CSV column containing integer number in comma separated form like
12,234,32,55
121,64,43,65
54,25,112,12
996,612,55,3 etc.
now from this table I want to find out the rows that has the value 12(twelve) in csv Column i.e., the row with csv record
12,234,32,55
54,25,112,12 only
Please Help