Advertisement
Guest User

Untitled

a guest
Aug 29th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. db.Raw.find({country:'AP'}).count()
  2. //32914
  3. db.Raw.aggregate([{$match: {country:'AP'}},{$group:{_id: null,idCount: { $addToSet: "$_id" }}}])
  4. //22078
  5. db.Raw.aggregate([{$match: {country:'AP'}},{$group:{_id: null,Count:{ $sum: 1 }}}])
  6. //32914
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement