一个字段同时满足多个条件

当一个字段需要同时等于多个值的时候,用and直接连不会有数据查出。

所以需要一些特殊处理。

 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条数据的结果集 

 

posted @ 2011-08-01 11:17  刘宇石  阅读(755)  评论(0编辑  收藏  举报