I have a column, money, and I want the top 5 most expensive activeRecord items.
How do I do that?
find(:all, order => "money desc" :limit => 5)
Rails 3 (ARel) syntax:
Item.order('items.money DESC').limit(5)