I have a column that has comma separated data:
1,2,3 3,2,1 4,5,6 5,5,5
I\'m trying to run a search that would query each value of the CSV s
You may get what you want by using the MySQL REGEXP or LIKE.
See the MySQL Docs on Pattern Matching