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 have the following query

@entity = Unit.joins(:item).select('SUM((items.entity/items.amount*units.amount)) AS entity')

How can this be done in a more rails like way?

share|improve this question
1  
This gem github.com/ernie/squeel can help you. – jdoe Aug 30 '12 at 19:47

1 Answer

Unit.joins(:item).sum('items.entity/items.amount*units.amount')
share|improve this answer
For some reason this only provides rounded values, no decimal. eg. 19 instead of 19.5 – tonymarschall Aug 30 '12 at 23:07
That's strange. Can you share the output of: select * from units left join items; – Dan Rabinowitz Aug 31 '12 at 3:48

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.