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 want to query by two columns added together like so, but I can seem to get it right:

Let's say the database has two columns: a and b. I would like to query the coumns where a plus b is greater than 100.

SomeModel.select("(a + b) as c").where("c > ?", 100)

How would you go about doing that? This is in postgres.

I could just loop over each found column and add them together in rain but that seems inefficient.

share|improve this question

1 Answer

up vote 5 down vote accepted

This won't help if you're trying to limit the number of columns returned, and it won't help to add a some_model.c method, but try this if that's okay:

SomeModel.where("(a + b) > ?", 100)
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.