I have a problem with a query:

I have 3 tables: products (id, name) settings (id, name) product_setting (product_id, setting_id)

for example: I would like to select only the products you have selected filters!

I do this:

SELECT p. *, s.id as setting
FROM Products p
INNER JOIN product_setting p2 ON (p.id = p2.product_id)
INNER JOIN settings s ON (s.id = p2.setting_id)
WHERE s.id IN (1,2)

but I get all products that have the 'setting' id = 1 OR id = 2. How to get only those products that have those 'setting' (AND)?

thanks!!

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted
SELECT p.*, s.id as setting
FROM Products p
INNER JOIN product_setting p2 ON (p.id = p2.product_id)
INNER JOIN settings s ON (s.id = p2.setting_id)
WHERE s.id IN (1,2)
GROUP BY p.id
HAVING COUNT(*)=2; // size of IN()
link|improve this answer
This seem is overly presumptuous of data. Consider the case where multiple settings could exist. While this is an outside issue which may be prevented, this could could easily introduce a bug if bad data were ever allowed into the system. – Glenn Dec 13 '11 at 17:57
Yeah! thanks... – Mauro Dec 14 '11 at 9:07
feedback

This seems like over kill but...

SELECT p. *, s.id as setting
FROM Products p
INNER JOIN product_setting p2 ON (p.id = p2.product_id)
INNER JOIN settings s ON (s.id = p2.setting_id)
INNER JOIN settings s2 ON (s.id = p2.setting_id)
WHERE 
    s.id = 1
    AND s2.id = 2
link|improve this answer
1  
s.id cannot co-exist in both 1 and 2 in single row – ajreal Dec 13 '11 at 18:01
Of course, how silly of me. – Glenn Dec 13 '11 at 18:10
feedback

Your Answer

 
or
required, but never shown

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