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 using Rails3, ActiveRecord

Just wondering how can I chain the scopes with OR statements rather than AND.

e.g.

Person.where(:name => "John").where(:lastname => "Smith")

That normally returns name = 'John' AND lastname = 'Smith', but I'd like:

name = 'John' OR lastname = 'Smith'

share|improve this question

6 Answers

Use ARel

t = Person.arel_table

results = Person.where(
  t[:name].eq("John").
  or(t[:lastname].eq("Smith"))
)
share|improve this answer
1  
Can anybody comment on whether this type of query breaks in Postgres? – Olivier Lacan Oct 28 '11 at 17:20
1  
I'm using Postgres and this seemed to work fine. – MrTheWalrus Dec 7 '11 at 16:45
ARel is supposed to be DB-agnostic. – Semyon Perepelitsa Jul 27 '12 at 16:17

You would do

Person.where('name=? OR lastname=?', 'John', 'Smith')

Right now, there isn't any other OR support by the new AR3 syntax (that is without using some 3rd party gem).

share|improve this answer
11  
and just for safety's sake, it's worth expressing this as Person.where("name = ? OR lastname = ?", 'John', 'Smith') – CambridgeMike Nov 9 '11 at 3:55

You can also use MetaWhere gem to not mix up your code with SQL stuff:

Person.where((:name => "John") | (:lastname => "Smith"))
share|improve this answer
good call on this one – Nick Vanderbilt Sep 13 '10 at 1:31
1  
+1. The successor to MetaWhere is squeel by the same author. – Thilo Dec 22 '12 at 19:22

This would be a good candidate for MetaWhere if you're using Rails 3.0+, but it doesn't work on Rails 3.1. You might want to try out squeel instead. It's made by the same author. Here's how'd you'd perform an OR based chain:

Person.where{(name == "John") | (lastname == "Smith")}

You can mix and match AND/OR, among many other awesome things.

share|improve this answer

If AR 3 is as good as DataMapper, you can try

Person.all(:name => "John") | Person.all(:lastname => "Smith")
share|improve this answer
Hi Tass, Isnt this querying the data table two times ? Just wanted to clarify thanks – sameera207 Sep 10 '10 at 15:06
That kind of works but returns an Array, I guess it actually executes two queries, lame! – Macario Apr 12 '11 at 20:55
names = ["tim", "tom", "bob", "alex"]
sql_string = names.map { |t| "name = '#{t}'" }.join(" OR ")
@people = People.where(sql_string)
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.