Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. db.people.aggregate([
  2. {
  3. "$group": {
  4. "_id": "$name.lastName",
  5. "count": {
  6. "$sum": 1
  7. }
  8. }
  9. },
  10. {
  11. "$project":
  12. {
  13. "_id": 1,
  14. "count": 1,
  15. "letter": { "$substr": [ "$_id", 0, 1 ] }
  16. }
  17. },
  18. {"$out":"lastNames"}
  19. ], {"allowDiskUse":true})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement