Created
October 29, 2015 20:11
-
-
Save danared/39eb78db64c2d4f51204 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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