Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have 3 tables:

Foods table stores all food items, Tags table stores all tags, FoodTagRelation stores the relation between food and tags. I want to write a query to select all Food that have exactly 2 tags with specified Ids (please read the SQL I have written at the bottom)

Foods Table

Id | FoodItem
----------------------
1  | Mango
2  | Custard
3  | Pizza

Tags Table

Id | TagName 
----------------------
1  |  Fruit
2  |  Cold
3  |  Hot
4  |  Veg

FoodTagRelation 

Id | FoodId | TagId
----------------------
1  | 1      | 1
2  | 1      | 4
3  | 2      | 1
4  | 2      | 2
5  | 2      | 4

Now I want to select all foods that have exactly two tags on it: e.g. select all foods which have both tags: Fruit and Cold.

I tried this query, but it returns all food with tags Fruit OR Cold.

select * from Foods
 inner join FoodTagRelation
 on
 Foods.Id=FoodTagRelation.FoodId
 where
 tagid in ('1','2')

How can I re-write this query to only return foods that have BOTH tags?

share|improve this question

5 Answers

up vote 3 down vote accepted

For a more generic answer that allows you to change the tags for which you're searching:

DECLARE @Search_Tags TABLE (TagId INT)

INSERT INTO @Search_Tags (TagId) VALUES (1), (2)

SELECT
    F.Id,
    F.FoodItem
FROM
    Foods F
INNER JOIN FoodTagRelation FTR ON
    FTR.FoodId = F.Id
INNER JOIN @Search_Tags ST ON
    ST.TagId = FTR.TagId
GROUP BY
    F.Id,
    F.FoodItem
HAVING
    COUNT(*) = (SELECT COUNT(*) FROM @Search_Tags)
share|improve this answer
If it were up to me, I'd mark this as the accepted answer. – Ralph Shillington Sep 6 '11 at 20:03
SELECT
   F.id,
   F.FoodItem
FROM
   Foods F
   INNER JOIN FoodTagRelation FTR
   ON F.Id = FTR.FoodId
WHERE
   FTR.tagid in('1','2')
GROUP BY
   F.id,
   F.FoodItem
HAVING
   count(Distinct FTR.tagid) > 1

Features: uses count distinct, to prevent an issue with duplicate tagid's for a given FoodID in your FoodTagRelation table. (If you don't think that duplicates are a concern, then you can remove the 'distinct' keyword). Secondly, I kept your WHERE clause, because that allows you to look for specific tags, as opposed to just any two. Finally, I listed out your fields, because that was necessary in order to use the group by clause (which in turn, was necessary in order to use the HAVING clause.)

share|improve this answer

When you said "select all Food which exactly 2 tags", if a food have 3 tag which include Fruit and Cold and some other tag. Does it count?

Anyway, here is query to find food that have both Fruit and Cold.

SELECT * 
FROM Foods f
INNER JOIN FoodTagRelation ft1
 ON f.Id=ft1.FoodId
INNER JOIN FoodTagRelation ft2
 ON f.Id=ft2.FoodId 
WHERE
 ft1.tagid = 1 AND  ft2.tagid = 2
share|improve this answer
SELECT * from Foods where FoodId in (
select FoodID from FoodTagRelation  where TagId in (1,2) 
group by FoodId having count(*)=2
)

NOTE Updating my SQL because the Rusi seems to only care about Foods with exactly to tags where TagId is (1 or 2)

share|improve this answer
i have edited the question to be make it more informative. As you have missed the clause tagid in ('1','2'), look the sql i ahve written at the bottom. – Rusi Nova Sep 6 '11 at 19:02
@Rusi Nova: Updated my answer. Now you'll only get foods with exactly 2 tags for tags 1 or 2. – Icarus Sep 6 '11 at 19:08

do a group by on FoodID and use having count(tagID) = 2

select *
from foods as f inner join foodtagrelation as ftr on f.id=ftr.foodid
where (ftr.tagid = 1 or ftr.tagid = 2)
group by f.foodid
having count(*) = 2
share|improve this answer
i have edited the question to be make it more informative. As you have missed the clause tagid in ('1','2'), look the sql i ahve written at the bottom. – Rusi Nova Sep 6 '11 at 19:02
@Rusi.. I added the additional conditions. You will find that for only a couple of values, that you may get better performance using an or clause rather than the in clause. – Mindfulgeek Sep 6 '11 at 19:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.