Hi,
i have a string table in my mysql/php table.
id | str
3 | 2,4,5,6
4 | 7,8,9,14
5 | 3,1,16
if i search with LIKE keyword for example "1" the result is below and its wrong
id | str
4 | 7,8,9,14
5 | 3,1,16
But the expected result is
id | str
5 | 3,1,16
since "1" is only in the above row but unfortunately no idea,
help me with this,
Nithish.