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.

link|improve this question

63% accept rate
1  
Can you explain why your result would not include test1 001 physics and test1 001 maths in your example? They both match physics and maths the same way the other two rows match. What's the difference? – ChrisWue Dec 22 '11 at 7:00
@ChrisWue because id 001 also contains chemistry – rabudde Dec 22 '11 at 7:03
feedback

3 Answers

Your question: get all rows where no other rows with same id but other term_names exists

SELECT * FROM <table> x WHERE
  term_name IN ('physics','maths') AND
  NOT EXISTS (SELECT * FROM <table> WHERE id=x.id AND term_name NOT IN ('physics','maths'))
link|improve this answer
feedback

first of all you need to parse your query to convert the '&' to SQL 'OR' operator in PHP :

//Parse the query
        $arr = explode('&',$query);
    $where = '';
//get the term count
    $count = count($arr);
    foreach($arr as $value){
    $where .= "term_name = '" . $value . "' OR";
    }
    //Remove last or
    $where = rtrim($where,'OR');

then : use L

"select node_name ,count(1) as Total from my table where $where
group by node_name
having Total =" . $count

Finally :

your query must be in this format:

select x,count(1) as total from mytable where field1 = 'term1' or field1 = 'term2' having total = 2
link|improve this answer
feedback

One possible way to do this:

select id, node_name 
from nodes join 
  (select id, 
       count(*) 
from nodes
  where node_name in ('physics','math')
group by id
having count(*) = 2 // this is set when generating the query ) as eligible_nodes
  on nodes.id = eligible_nodes.id
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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