当前位置:  开发笔记 > 后端 > 正文

获取ActiveRecord中每个组的最小/最大值

如何解决《获取ActiveRecord中每个组的最小/最大值》经验,为你挑选了1个好方法。

这是一个古老的问题,给定一个具有属性"类型","变化"和"价格"的表格,您可以获取每种类型的最低价格的记录.

在SQL中,我们可以做这样的:

select f.type, f.variety, f.price   
from (  select type, min(price) as minprice from table group by type ) as x  
inner join table as f on f.type = x.type and f.price = x.minprice;`

我们也许可以通过以下方式模仿:

minprices = Table.minimum(:price, :group => type)  
result = []
minprices.each_pair do |t, p|  
   result << Table.find(:first, :conditions => ["type = ? and price = ?", t, p])
end

有没有比这更好的实施?



1> Avdi..:
Table.minimum(:price, :group => :type)

见http://api.rubyonrails.org/classes/ActiveRecord/Calculations.html#method-i-minimum更多信息,.


如何获得每种类型的最高和最低价格?
推荐阅读
郑小蒜9299_941611_G
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有