mysql 一个字段多个值查询

表字段存储的值是逗号分割的
怎么查询 这个字段是否在这个字符串中
例如:
str字段的值 是 1,3,4,7
字符串的值是 1,3,7,8,9,0
怎么查 str 字符 是否在这个字符串中
在线等!!!!!!

代码如下:
  SELECT * FROM news_extinfo
where
(ExtID = 1 and OptionValue = 0)
or (ExtID = 2 and OptionValue = 0 )
or (ExtID = 3 and OptionValue = 0 )
group by NewsID
having count(*)=3

此处 count(*) = 3 表示的意思是

在查询的结果中,只查出按group 分组之后,每个组的有3条数据的结果集
温馨提示:内容为网友见解,仅供参考
第1个回答  2015-03-31
WHERE colounName LIKE '%str%';
相似回答