SQL - 同一列上的不同条件
我正在尝试实现与 SQL - 多个条件 where 子句非常相似的东西相同的列
区别在于我想要两个单独的 WHERE 条件:
WHERE tag_id IN (1,2)
OR tag_id IN (3,2)
GROUP BY other_id HAVING COUNT(tag_id) = 2
这为我提供了我需要的所有记录,而且还为我提供了具有标签 1 或 3 的记录,即使该记录没有tag_id = 2
。我知道我的问题出在 OR
条件下,因为如果我分别执行 (1,2)
和 (3,2)
,我获取每个查询的预期结果。
我缺少什么?
I'm trying to achieve something very similar to SQL - Multiple conditions where clause the same column
The difference is that I want two separate WHERE conditions:
WHERE tag_id IN (1,2)
OR tag_id IN (3,2)
GROUP BY other_id HAVING COUNT(tag_id) = 2
This gives me all the records that I need, but also gives me records that have the tags 1 or 3 even when that record doesn't have tag_id = 2
. I know that my problem is in the OR
condition, because if I do (1,2)
and (3,2)
separately, I get the expected results for each query.
What am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以使用:
You could use: