Created
February 3, 2022 19:38
-
-
Save made-by-chris/2e865af4d8e0f6b81d32ed84a0273b10 to your computer and use it in GitHub Desktop.
some fun aggregations
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
db.listingsAndReviews.aggregate([ { "$project": { "address": 1, "_id": 0 } }, { "$group": { "_id": "$address.country", "sum": { "$sum": 1 } } }]) | |
db.listingsAndReviews.aggregate([ { "$project": { "address": 1, "_id": 0 } }, { "$group": { "_id": "$address.country", "sum": { "$sum": 5 } } },{ "$sort" : { "sum" : 1 } } ]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment