I have query like this
SELECT * FROM table WHERE id ='1'
but in column id store data like this
array (size=2)
0 => string '1' (length=1)
'id' => string '1' (length=1)
array (size=2)
0 => string '1,2' (length=3)
'id' => string '1,2' (length=3)
array (size=2)
0 => string '1,2,3' (length=5)
'id' => string '1,2,3'
Result of my query is show only 1 row but what I need is show every row that has value 1
in it.
plz help me with it