suchen

Heim  >  Fragen und Antworten  >  Hauptteil

nosql - MongoDB 官方文档中的 aggregate 例子当中的 $sum: 1 , 这里的 1 起什么作用?

db.restaurants.aggregate( 
[ 
{ $match: { "borough": "Queens", "cuisine": "Brazilian" } }, 
{ $group: { "_id": "$address.zipcode" , "count": { $sum: 1 } } } 
]
);
怪我咯怪我咯2758 Tage vor684

Antworte allen(2)Ich werde antworten

  • 高洛峰

    高洛峰2017-04-28 09:06:16

    http://docs.mongodb.org/manual/reference/operator/aggregation/sum/

    按表达式值求和 1代表1个

    Antwort
    0
  • 世界只因有你

    世界只因有你2017-04-28 09:06:16

    按照 group 的条件, 满足一条就加1, 也就是count是 group中 每种 zipcode 的数量

    Antwort
    0
  • StornierenAntwort