我正在尝试多个所有“点”字段。
$out = $kuponmac->aggregate(
array('$match' => array('random'=>$random, 'ekleyen'=>$ekleyen)),
array('$group' => array(
'_id' => '$state',
'totalPop' => array('$multiply' => '$point')
)
),
array(
'$match' => array('totalPop' => array('$gte' => 0))
)
);
这是我的代码。我正在尝试使用乘法,但我无法正确使用它。如何使所有“点”字段相乘?
我正在寻找http://docs.mongodb.org/manual/reference/aggregation/multiply/但没有详细的解释或示例。
你能帮帮我吗?