Advertisement
davidemarceddu

Voli: Le compagnie aeree che volano su {CITY_NAME} sono {TOT

Mar 24th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. db.parsed_data.aggregate(
  2. {
  3. $match : {$and: [{"Origin.City" : "Alghero"}]}
  4. },
  5. {
  6. $group : {_id : "$Segments.Carrier" }//_id : "$Origin.Code"
  7. },
  8.  
  9.  
  10. { $group: { _id: 1, count: { $sum: 1 } } }
  11. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement