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

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.

share|improve this question
I was looking for this... +1 to put you over 1,000!!! – Ryan Ferretti Aug 26 '11 at 16:23

2 Answers

up vote 106 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}
share|improve this answer
1  
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
2  
@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
show 3 more comments

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))
share|improve this answer
2  
I'm curious what the logic is then for turning !nil into '1' – SooDesuNe Nov 23 '10 at 5:07
6  
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
16  
This, IMO, is superior to the accepted answer. – thekingoftruth Mar 12 '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 '12 at 16:14
1  
I have not managed to do this with sqlite3. sqlite3 wants to see field_name != 'NULL'. – mjnissim Jul 24 '12 at 16:35
show 3 more comments

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.