I have a MySQL table which contains comma-separated values like this:
first row=(3,56,78,12) second row=(6,44,2,3) third row=(67,4,2,7,1) fourth row=(8
SELECT * FROM Table WHERE Field IN ($first_row) OR Field IN ($second_row) OR Field IN ($third_row) OR Field IN ($fourth_row);