i have 3 tables that look like this:

table 1 (main table):

    item_id (item_id, item_name) // item_id set to primary 
    row1    (1,       "item 1")
    row2    (2,       "item 2")
    row3    (3,       "item 3")

table 2 (linking table):

    item_keywords (ikid, #item_id, #keyword_id) // ikid is set to primary 
    row1          (1,       1,     1)
    row2          (2,       1,     2)
    row3          (3,       1,     3)
    row4          (4,       2,     1)
    row5          (5,       3,     1) 

table 3:

    keywords (keyword_id, keyword_name) // keyword_id is set to primary 
    row1          (1,       "key1")
    row2          (2,       "key2")
    row3          (3,       "key3")
    row4          (4,       "key4")
    row5          (5,       "key5") 

i would like to make a query that returns all items that contain certain keywords AND also don't contain some other keywords. If you look at the table data above you can see that:

  Item 1 contains keywords with ids: 1,2 and 3; 
  Item 2 contains keyword with id: 1 
  item 3 contains keyword_id =1 

Example:

So i need a query that will return all items that contain key1 (keyword_id=1) and DON'T contain key3 (keyword_id=3). In this exmaple the query should return key2 (keyword_id=2), key3 (keyword_id=3) .

Something like this:

SELECT a.*
FROM items a
JOIN item_keywords b ON b.item_id = a.item_id
WHERE b.keyword_id = 1
   AND b.keyword_id != 3

But this doesn't work properly because the query returns key1,key2 and key3. The answer should be: key2 and key3. What would be the simplest way of doing this?

link|improve this question

77% accept rate
1  
If you have a record with keyword_id = 1, it can never also have keyword_id = 3. Are you sure you are describing what you are looking for? – Adam Wenger Dec 3 '11 at 17:03
and why couldn't it have keyword_id = 1 and keyword_id = 3 ? item_keywords is a linking table between keywords and items (i didn't describe the items table because it isn't relative for this problem) – blejzz Dec 3 '11 at 17:09
Oh, I think I understand now, Sorry. You do not need the Keywords table in the description of your problem then. – Adam Wenger Dec 3 '11 at 17:10
@blejzz You should rephrase your question, the words you use to describe the results are very misleading and you should also clarify the fact that there is another table. It took me a will to figure out what you were trying to achieve – krtek Dec 3 '11 at 17:16
@blejzz I made an attempt to rephrase your question. If I am incorrect, I apologize. My answer is based off this assumption – Adam Wenger Dec 3 '11 at 17:23
show 1 more comment
feedback

1 Answer

up vote 3 down vote accepted
SELECT i.*
FROM items AS i
INNER JOIN item_keywords AS ik ON i.item_id = ik.item_id
WHERE keyword_id = 1
   AND ik.item_id NOT IN
   (
      SELECT item_id
      FROM item_keywords
      WHERE keyword_id = 3
   )

Example of query working:

link|improve this answer
doesn't work, i returns item_id = 1, 2 and 3 – blejzz Dec 3 '11 at 17:34
@blejzz I have updated my query for your tables, as well as provided you a link to a working example. – Adam Wenger Dec 3 '11 at 17:42
+1 for clever example. – danihp Dec 3 '11 at 17:43
worked, thanks alot! – blejzz Dec 3 '11 at 18:14
feedback

Your Answer

 
or
required, but never shown

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