I need an efficient way to select all articles with at least tags "Tag1" and "Tag2". This is the standart way with the following database schema:
articles(id, title)
article_tag(articleid, tagid)
tag(id, name)
SELECT a.*
FROM article a
INNER JOIN (SELECT at.articleid
FROM article_tag at
INNER JOIN article a
ON a.id = at.articleid
INNER JOIN tag t
ON t.id = at.tagid
WHERE t.name IN ("Tag1","Tag2")
GROUP BY at.articleid
HAVING Count(at.articleid) = 2) aa
ON a.id = aa.articleid
Is there a more efficient way performance wise?
sql-match-alltag. This exact type of problem has been answered many times on SO. – Bill Karwin Dec 23 '11 at 21:51