Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm hoping there is a easy solution that doesn't involve find_by_sql, if not then I guess that will have to work.

I found this article which references this:

Topic.find(:all, :conditions => { :forum_id => @forums.map(&:id) })

which is the same as

SELECT * FROM topics WHERE forum_id IN (<@forum ids>)

I am wondering if there is a way to do NOT IN with that, like:

SELECT * FROM topics WHERE forum_id NOT IN (<@forum ids>)
share|improve this question
1  
As an FYI, Datamapper has had specific support for NOT IN. Example: Person.all(:name.not => ['bob','rick','steve']) – Mark Thomas Nov 29 '10 at 20:25
sorry for being ignorant, but what is Datamapper? is that part of rails 3? – Toby Joiner Nov 29 '10 at 21:20
2  
data mapper is an alternative way of storing data, it replaces Active Record with a different structure and then you write your model related stuff such as queries, differently. – Michael Durrant Jul 13 '11 at 11:52

10 Answers

up vote 29 down vote accepted

You can try something like:

Topic.find(:all, :conditions => ['forum_id not in (?)', @forums.map(&:id)])

You might need to do @forums.map(&:id).join(','). I can't remember if Rails will the argument into a CSV list if it is enumerable.

You could also do this:

# in topic.rb
named_scope :not_in_forums, lambda { |forums| { :conditions => ['forum_id not in (?)', forums.select(&:id).join(',')] }

# in your controller 
Topic.not_in_forums(@forums)
share|improve this answer
Weird. Maybe it's to do with the field naming... I haven't seen that before... – jonnii Nov 29 '10 at 21:39

I'm using this:

Topic.where('id not in (?)',actions)

Where actions is an array with: [1,2,3,4,5]

share|improve this answer
This is the proper approach with the latest Active Record query model – Nevir Mar 9 '12 at 19:18
This is my favorite answer. – Jason Swett Mar 22 '12 at 18:18
10  
but does not work if actions is nil or empty – NewAlexandria Aug 21 '12 at 20:34
2  
@NewAlexandria is right, so you'd have to do something like Topic.where('id NOT IN (?)', (actions.empty? ? '', actions). It would still break on nil, but I find that the array you pass in is usually generated by a filter that will return [] at the very least and never nil. I recommend checking out Squeel, a DSL on top of Active Record. Then you could do: Topic.where{id.not_in actions}, nil/empty/or otherwise. – danneu Jan 18 at 14:06
1  
@danneu just swap .empty? for .blank? and you are nil-proof – colllin Feb 5 at 0:57
show 1 more comment

Using Arel:

topics=Topic.arel_table
Topic.where(topics[:forum_id].not_in(@forum_ids))

or, if preferred:

topics=Topic.arel_table
Topic.where(topics[:forum_id].in(@forum_ids).not)

Please notice that eventually, you do not want the forum_ids to be the ids list but rather a subquery, if so, then you should do something like this before getting the topics:

@forum_ids = Forum.where(/*whatever conditions are desirable*/).select(:id)

in this way you get everything in a single query: something like:

select * from topic 
where forum_id in (select id 
                   from forum 
                   where /*whatever conditions are desirable*/)

Also notice that eventually you do not want to do this, but rather a join, what should be more efficient.

share|improve this answer
Clean and future proof! – rxgx Jun 28 '12 at 0:58

The accepted solution fails if @forums is empty. To workaround this I had to do

Topic.find(:all, :conditions => ['forum_id not in (?)', (@forums.empty? ? '' : @forums.map(&:id))])

Or, if using Rails 3+:

Topic.where( 'forum_id not in (?)', (@forums.empty? ? '' : @forums.map(&:id)) ).all
share|improve this answer

Most of the answers above should suffice you but if you are doing a lot more of such predicate and complex combinations check out Squeel. You will be able to doing something like:

Topic.where{{forum_id.not_in => @forums.map(&:id)}}
Topic.where{forum_id.not_in @forums.map(&:id)} 
Topic.where{forum_id << @forums.map(&:id)}
share|improve this answer

Can these forum ids be worked out in a pragmatic way? e.g. can you find these forums somehow - if that is the case you should do something like

Topic.all(:joins => "left join forums on (forums.id = topics.forum_id and some_condition)", :conditions => "forums.id is null")

Which would be more efficient than doing an SQL not in

share|improve this answer

This way optimizes for readability, but it's not as efficient in terms of database queries:

# Retrieve all topics, then use array subtraction to
# find the ones not in our list
Topic.all - @forums.map(&:id)
share|improve this answer

You may want to have a look at the meta_where plugin by Ernie Miller. Your SQL statement:

SELECT * FROM topics WHERE forum_id NOT IN (<@forum ids>)

...could be expressed like this:

Topic.where(:forum_id.nin => @forum_ids)

Ryan Bates of Railscasts created a nice screencast explaining MetaWhere.

Not sure if this is what you're looking for but to my eyes it certainly looks better than an embedded SQL query.

share|improve this answer

You can use sql in your conditions:

Topic.find(:all, :conditions => [ "forum_id NOT IN (?)", @forums.map(&:id)])
share|improve this answer

Piggybacking off of jonnii:

Topic.find(:all, :conditions => ['forum_id not in (?)', @forums.pluck(:id)])

using pluck rather than mapping over the elements

found via railsconf 2012 10 things you did not know rails could do

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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