Ok, normally I know you would do something like this is you knew the array vals:
SELECT * WHERE id IN (1,2,3)
But... I don't know the array vals, I just know the value I want to find in a 'stored' array:
SELECT * WHERE 3 IN (ids) // Where ids is stored as 1,2,3
Which doesn't work. Is there another way to do this?
Thanks.
PHP + MySQL