db.restaurants.aggregate( [ { $match: { "borough": "Queens", "cuisine": "Brazilian" } }, { $group: { "_id": "$address.zipcode" , "count": { $sum: 1 } } } ] );
走同样的路,发现不同的人生
http://docs.mongodb.org/manual/reference/operator/aggregation/sum/
수식값 1의 합은 1을 나타냅니다
그룹의 조건에 따라 하나의 조건이 충족되면 1을 더합니다. 즉, 그룹 내 각 우편번호의 개수가 count입니다
http://docs.mongodb.org/manual/reference/operator/aggregation/sum/
수식값 1의 합은 1을 나타냅니다
그룹의 조건에 따라 하나의 조건이 충족되면 1을 더합니다. 즉, 그룹 내 각 우편번호의 개수가 count입니다