Skip to content

Instantly share code, notes, and snippets.

@danared
Created October 29, 2015 20:11
Show Gist options
  • Save danared/39eb78db64c2d4f51204 to your computer and use it in GitHub Desktop.
Save danared/39eb78db64c2d4f51204 to your computer and use it in GitHub Desktop.
secondary> db.orders.aggregate([
{$match: {
price: {$type: 2}}},
{$group: {
_id: "$price",
count: {$sum:1}}}
])
{ "_id" : "if you have to ask....", "count" : 250 }
{ "_id" : "free", "count" : 500 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment