Advertisement
davidemarceddu

Voli: Codice aeroporto più utilizzato nelle ricerche

Mar 24th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. db.parsed_data.aggregate(
  2.  
  3. {
  4. $group : {_id : "$Origin.Code" , "total" : { $sum : 1 }}//_id : "$Origin.Code"
  5. },
  6.  
  7. {
  8. $sort : {total : -1}
  9. }
  10. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement