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'm basically attempting to use the NOT IN function twice during a mySQL query My NEW current query is as followed

SELECT `o`.`id`, `o`.`name`, `o`.`url`, `o`.`type`, `o`.`desc` FROM `offers` as `o` 
WHERE `o`.country_iso = '$country_iso' AND `o`.`id` not in 
(select distinct(offer_id) from conversions where ip = '$_SERVER[REMOTE_ADDR]' 
and converted != '0') AND `o`.`id` not in 
(select `offer_id` from `aff_disabled_offers` where `offer_id` = 'o.id' 
and `user_id` = '1') ORDER by rand() LIMIT $limit

The query works but for some reason it's completely ignoring this

AND `o`.`id` not in 
(select `offer_id` from `aff_disabled_offers` where `offer_id` = 'o.id') 
share|improve this question
2  
hopefully you tried to add AND not in... – agim Jan 12 at 0:41
what is the full error message? – JW 웃 Jan 12 at 0:42
Read about quoting: stackoverflow.com/questions/11321491/… – Michael Berkowski Jan 12 at 0:44

closed as too localized by Jocelyn, Ocramius, tereško, hakre, j0k Apr 30 at 16:11

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 1 down vote accepted

You need to specify an operator between your conditions, such as AND or OR. You also need a valid query inside the NOT IN clause.

SELECT `o`.`id`, `o`.`name`, `o`.`url`, `o`.`type`, `o`.`desc` 
FROM `offers` as `o` 
WHERE `o`.country_iso = '$country_iso' 
AND `o`.`id` not in (select distinct(offer_id)
                     from converstions where
                     from conversions 
                     where ip = '$_SERVER[REMOTE_ADDR]' 
                     and converted != '0')
AND `o`.`somevar` not in (select `somevar` from 
                          `sometable` where `offer_id` = 'o.id')
ORDER by rand() LIMIT 0,6
share|improve this answer
That's not worked either for some reason, Here's the code i used ` $sql = "SELECT o.id, o.name, o.url, o.type, o.desc FROM offers as o WHERE o.country_iso = '$country_iso' AND o.id not in (select distinct(offer_id) AND o.id not in (select offer_id from aff_disabled_offers where offer_id = 'o.id' and user_id = '1') FROM conversions where ip = '$_SERVER[REMOTE_ADDR]' and converted != '0') order by rand()";` – Curtis Crewe Jan 12 at 0:46
Some code in my post was misplaced. As you can see (select distinct(offer_id) is incomplete. I have updated my answer now. – ribot Jan 12 at 0:48
I have updated my current post to explain the problem at the moment – Curtis Crewe Jan 12 at 0:56

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