Using the rails 3 style how would I write the opposite of:

Foo.includes(:bar).where(:bars=>{:id=>nil})

I want to find where id is NOT null. I tried:

Foo.includes(:bar).where(:bars=>{:id=>!nil}).to_sql

But that returns:

=> "SELECT     \"foos\".* FROM       \"foos\"  WHERE  (\"bars\".\"id\" = 1)"

That's definitely not what I need, and almost seems like a bug in ARel.

link|improve this question

77% accept rate
I was looking for this... +1 to put you over 1,000!!! – Ryan Ferretti Aug 26 '11 at 16:23
feedback

2 Answers

up vote 38 down vote accepted

I do this with:

Foo.includes(:bar).where("bars.id IS NOT NULL")

I use a library called Squeel, with block syntax similar to Sequel. This should work:

Foo.includes{bar}.where{bars.id != nil}
link|improve this answer
Last one here isn't working for me, do we need an extra gem or plugin for this? I get: rails undefined method 'not_eq' for :confirmed_at:Symbol.. – Tim Jun 7 '11 at 10:21
1  
@Tim Yes, the MetaWhere gem I linked above. – Adam Lassek Jun 9 '11 at 2:25
I like the solution that doesn't require other gems :) even if it is a bit ugly – oreoshake Jul 26 '11 at 21:32
@oreoshake MetaWhere/Squeel are well worth having, this is just a tiny facet. But of course a general case is good to know. – Adam Lassek Jul 26 '11 at 22:26
Thanks dude, I didn't know about Squeel. Cheers. – Chance Nov 5 '11 at 17:00
feedback

It's not a bug in ARel, it's a bug in your logic.

What you want here is:

Foo.includes(:bar).where(Bar.arel_table[:id].not_eq(nil))
link|improve this answer
1  
I'm curious what the logic is then for turning !nil into '1' – SooDesuNe Nov 23 '10 at 5:07
4  
At a guess, !nil returns true, which is a boolean. :id => true gets you id = 1 in SQLese. – zetetic Nov 23 '10 at 5:40
4  
This, IMO, is superior to the accepted answer. – thekingoftruth Mar 12 at 22:59
This is a good way to avoid writing raw sql fragments. The syntax isn't as concise as Squeel though. – Kelvin May 16 at 16: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.