mysql一表name表,nums是用的,连起来的值
id  name  nums
1   a    3,4,5
2   b    4,5,6
如果我要查询  nums中含有3的记录 应该是:where FIND_IN_SET('3',nums)
现我要实现:nums中不含有3的记录,怎么写呀,