I have a table like below :
node_name id term_name
----------------------------------------------
test1 001 physics
test1 001 maths
test1 001 chemistry
test2 002 physics
test2 002 maths
Given a combination of term names I want to find all rows where the id set only contains exactly the given term names.
For example given the term names physics & maths my output should be like below
node_name id term_name
----------------------------------------------
test2 002 physics
test2 002 maths
Id set 001 contains also chemistry that is why it should not be included.
test1 001 physicsandtest1 001 mathsin your example? They both matchphysicsandmathsthe same way the other two rows match. What's the difference? – ChrisWue Dec 22 '11 at 7:00id 001also containschemistry– rabudde Dec 22 '11 at 7:03