I have a table with several fields and one field having 3 Comma Separated Values
Column 1 Column 2 1 1,2,3 2 2,3,4 3 6,7,8
You should be able to use Like to do this, something like:
SELECT * FROM tablename WHERE [Column 2] LIKE ("%2%");