Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこの機能を持っています:
Order.find_by_amount().amount
最高額を得るために () に何を挿入するかで行き詰まっています。
find_byメソッドを使用しないでください。これは次の方法で実行できます。
find_by
Order.order(:amount).last.amount #the second order is to sort in your database
役立つことを願っています
amountがテーブルのフィールドである場合orders、これにより最高額の注文を取得できます
amount
orders
Order.order('amount DESC').first.amount