Hi
Is there any option to check if a character exist in a row
for example i have table as below
id name numvals
1 a 1,2,3
2 b 2,3,4,5,15
3 c 13,14,1,3,5
4 d 20,2,200
5 e 50,2,200
6 f 15
SELECT * from `table` WHERE `numvals`[B] NOT IN[/B] (5)
Im looking for alternative for NOT IN so that rows returned will be
1 a 1,2,3
4 d 20,2,200
5 e 50,2,200
6 f 15
Thanks in advance