-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaggregate_ex.js
217 lines (197 loc) · 2.62 KB
/
aggregate_ex.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
use test
db.products.aggregate([
{$group:
{
_id:"$manufacturer",
num_products:{$sum:1}
}
}
])
//aggregate $sum
db.products.aggregate([
{$group:
{
_id:"$category",
num_products:{$sum:1}
}
}
])
db.zips.aggregate([
{"$group":
{_id:"$state",
"population":{"$sum":"$pop"}
}
}
])
// $avg
db.products.aggregate([
{$group:
{
_id:{
"category":"$category"
},
avg_price:{$avg:"$price"}
}
}
])
db.zips.aggregate([
{$group:
{
_id:"$state",
"average_pop":{$avg:"$pop"}
}}
])
// $addToSet
db.zips.aggregate([
{$group:
{
_id:"$city",
"postal_codes":{$addToSet:"$_id"}
}
}
])
// $push
db.products.aggregate([
{$group:
{
_id:{
"maker":"$manufacturer"
},
categories:{$push:"$category"}
}
}
])
// $max and $min
db.zips.aggregate([
{$group:
{
_id:"$_id",
pop:{$max:"$pop"}
}}
])
// $group stages
db.grades.aggregate([
{$group:{
_id:{class_id:"$class_id", student_id:"$student_id"},
'average':{"$avg":"$score"}
}
},
{$group:{_id:"$_id.class_id", 'average':{"$avg":"$average"}}}
])
// $project
db.zips.aggregate([
{$project:
{
_id:0,
"city":{$toLower:"$city"},
"pop":"$pop",
"state":"$state",
"zip":"$_id"
}
}
]) //or:
db.zips.aggregate([
{$project:
{
_id:0,
"city":{"$toLower":"$city"},
pop:1,
state:1,
"zip":"$_id"
}
}
])
// $match
db.zips.aggregate([
{$match:
{
state:"NY"
}
},
{$group:
{
_id: "$city",
population: {$sum:"$pop"},
zip_codes: {$addToSet: "$_id"}
}
},
{$project:
{
_id:0,
city: "$_id",
population: "$population", //or population:1
zip_codes:1
}
}
])
db.zips.aggregate([
{$match:
{
pop:{$gt:100000}
}
}
])
// $sort
db.zips.aggregate([
{$sort:
{
state:1,
city:1
}
}
])
// using $match, $group, $project, $sort, $skip, $limit
db.zips.aggregate([
{$match:
{
state:"NY"
}
},
{$group:
{
_id:"$city",
population: {$sum:"$pop"}
}
},
{$project:
{
_id:0,
city:"$_id",
population:1,
}
},
{$sort:
{
population:-1
}
},
{$skip: 10},
{$limit: 5}
])
// get the population of every city in every state
db.zips.aggregate([
{$group:
{
_id: {state:"$state", city:"$city"},
population: {$sum:"$pop"},
}
},
//sort by state, population
{$sort:
{"_id.state":1, "population":-1}
},
// group by state, get first item in each group
{$group:
{
_id:"$_id.state",
city: {$first: "$_id.city"},
population: {$first:"$population"}
}
},
{$sort: {population:1}}
])
// $unwind to unjoin data
// {a:1,b:[A1,B1]} would become:
// {a:1,b:A1}
// {a:1,b:B1}
// $push is like the opposite to $unwind