Ok, normally I know you would do something like this if you knew the array values (1,2,3 in this case):
SELECT * WHERE id IN (1,2,3)
But I
Use the FIND_IN_SET function:
SELECT t.* FROM YOUR_TABLE t WHERE FIND_IN_SET(3, t.ids) > 0