Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. "result" : [
  2. {
  3. "maxTemp" : 83,
  4. "group_id" : "Florida"
  5. },
  6. {
  7. "maxTemp" : 57,
  8. "group_id" : "New Mexico"
  9. },
  10. {
  11. "maxTemp" : 81,
  12. "group_id" : "California"
  13. },
  14. {
  15. "maxTemp" : 57,
  16. "group_id" : "Vermont"
  17. }
  18. ],
  19. "ok" : 1
  20.  
  21. db.data.aggregate(
  22. {
  23. $group: {
  24. _id: "$State"
  25. , maxTemp: { $max :"$Temperature"}
  26. }
  27. },
  28. { $project: {
  29. _id: 0,
  30. group_id:"$_id",
  31. maxTemp: "$maxTemp"
  32. }}
  33. ).result.forEach(function(match) {
  34. results.push(db.data.findOne(match));
  35. });
  36.  
  37. > results
  38. [ null, null, null, null ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement