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条数据的结果集
欢迎分享,转载请注明来源:内存溢出
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条数据的结果集
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)