List:General Discussion« Previous MessageNext Message »
From:Ingo Weiss Date:April 22 2008 3:22pm
Subject:SQL question: find items tagged with specific tags
View as plain text  
Hi all,

I have an application where items can be tagged. There are three  
tables 'items', 'taggings'  and 'tags' joined together like this:

  items inner join taggings on (items.id = taggings.item_id) inner  
join tags on (tags.id = taggings.tag_id)

Now I have been struggling for some time now with coming up with the  
SQL to find the items the tags of which include a specified list of  
tag names. Example:

I am looking for items tagged with 'blue' and 'red'. This should find  
me:

- items tagged with 'blue' and 'red'
- items tagged with 'blue', 'red' and 'green'

Any help is very much appreciated!
Ingo

Thread
SQL question: find items tagged with specific tagsIngo Weiss22 Apr
  • Re: SQL question: find items tagged with specific tagsSebastian Mendel22 Apr
    • Re: SQL question: find items tagged with specific tagsIngo Weiss23 Apr
      • Re: SQL question: find items tagged with specific tagsSebastian Mendel23 Apr