foo、foo_bar は ActiveModel クラスとして表現されます
create table foo (id, captured_date)
create table foo_bars (id, foo_id, val1, val2)
insert into foo (1, '2012-11-01')
insert into foo (2, '2012-11-02')
insert into foo_bars (1, 1, 1, 1)
insert into foo_bars (1, 1, 2, 2)
insert into foo_bars (1, 2, 3, 3)
insert into foo_bars (1, 2, 4, 4)
次の表を表示することが期待されています (date, sum(val1), avg(val2))
2012-11-01 3 1.5
2012-11-02 7 3.5
_________________
10 2.5
_________________
上記は、日付全体の合計(val1)、平均(val2)です
ビューで AR クエリを使用してこれを実現する最も簡単な方法は何でしょうか。ビューのコードはどのように見えるべきか、どのクエリを使用すべきか。