如何获取查询结果的sum字段的值?
$q = Doctrine_Query::create()
->select('SUM( t.field1)')
->from('table')
->group_bt('t.field2');
我尝试过像$q->sum
这样的东西,但它不起作用。
答案 0 :(得分:1)
我认为你拼错了第4行应该是 -
$q = Doctrine_Query::create()
->select('SUM( t.field1) AS sum')
->from('table')
->groupBy('t.field2');
$ sun_value = $ q-> sum;