MYSQL仅在集合中查询
我有一个表,它将条目与关联标签链接起来,其中包含以下数据:
entry_id | tag_id
1 | 1
2 | 1
3 | 1
1 | 2
2 | 2
我正在尝试编写一个查询,该查询仅返回标记为 1 AND 2 的条目,在此示例中,将返回条目 1 和 2,而不会返回条目 3,因为它没有这两个标签。我正在使用的当前查询有效,但我知道不可能是正确的:
SELECT entry_id, GROUP_CONCAT(DISTINCT tag_id ORDER BY tag_id)
FROM tags
GROUP BY entry_id
HAVING GROUP_CONCAT(DISTINCT tag_id ORDER BY tag_id) LIKE "%1,2%";
I have a table that links entries with associated tags with the following data in it:
entry_id | tag_id
1 | 1
2 | 1
3 | 1
1 | 2
2 | 2
I am trying to write a query that returns only entries tagged with 1 AND 2, in this example entries 1 and 2 would be returned, while 3 would not, because it does not have both tags. The current query I am using works but I know can't be right:
SELECT entry_id, GROUP_CONCAT(DISTINCT tag_id ORDER BY tag_id)
FROM tags
GROUP BY entry_id
HAVING GROUP_CONCAT(DISTINCT tag_id ORDER BY tag_id) LIKE "%1,2%";
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果 (entry_id, tag_id) 是唯一的:
另一种方法不需要唯一性,而且速度更快:
If (entry_id, tag_id) is unique:
An alternative approach that doesn't require uniqueness and can also be faster:
这是一个自我加入的好例子......
This is a good case for a self-join...