Skip to content

Instantly share code, notes, and snippets.

@tqyq
Last active November 30, 2015 02:29
Show Gist options
  • Save tqyq/cf32b7401800df58dd94 to your computer and use it in GitHub Desktop.
Save tqyq/cf32b7401800df58dd94 to your computer and use it in GitHub Desktop.
php mongodb aggregate group query
public function group()
{
$r = D('Charge')->getCollection()->aggregate([
['$match'=>['cat'=>'55d17590f7c6d19c1e000039']],
['$group' => ['_id' => '$cat', 'money' => ['$sum' => '$price'], 'oc' => ['$sum' => 1]]],
['$sort' => ['money' => -1]]
]);
json_out($r);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment