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)
我应该在表格中显示以下内容(日期、总和(val1)、平均(val2))
2012-11-01 3 1.5
2012-11-02 7 3.5
_________________
10 2.5
_________________
以上是跨日期的 sum(val1), avg(val2)
在您的视图中使用 AR 查询来实现这一目标的最简单方法是什么。我的视图代码应该是什么样子以及我应该使用什么查询。