Guest User

Untitled

a guest
Jul 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. [
  2. {
  3. "_id": "5b506dccc00e755288ceaec6",
  4. "title": "Mercedes",
  5. "URL": "Null",
  6. "price": 2700000,
  7. "region": "Mumbai",
  8. "Man_year": 2013
  9. },
  10. {
  11. "_id": "5b506dccc00e755288ceaec6",
  12. "title": "Ferrari",
  13. "URL": "Null",
  14. "price": 30000,
  15. "region": "China",
  16. "Man_year": 2013
  17. }
  18. ]
  19.  
  20. [{"_id":{"man_year":2010},"countofcars":2,{"regions":{"Mumbai","China"}}}
  21.  
  22. db.collection('collection').aggregate([{ $group: { _id: {man_year:"$Man_year",region:"$region"}, countofcars: { $sum: 1 } } }]).toArray(function (err, results) {
Add Comment
Please, Sign In to add comment