合計値を取得する

class TestController < ApplicationController
  def index
    @sum_sales = Sale.all.sum(:amount)
  end
end
フィールドの合計値を取得するには
モデル.sum(:フィールド)

の形式で記入します。

上の例はSaleモデルのamountフィールドの合計を取得しています。