-
Notifications
You must be signed in to change notification settings - Fork 32
/
6i6ant_samochody_agregacje.js
48 lines (40 loc) · 1.11 KB
/
6i6ant_samochody_agregacje.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
var mongodb = require('mongodb');
var server = new mongodb.Server("127.0.0.1", 27017, {});
new mongodb.Db('test', server, {w: 1}).open(function (error, client) {
if (error) throw error;
var collection = new mongodb.Collection(client, 'samochody');
//Średnie spalanie dla poszczególnych marek. Posortowane malejąco.
collection.aggregate([
{$group : {_id : "$make", mpg_city: {$avg: "$mpg_city"}}},
{$project : {_id: 0, producent: "$_id", mpg_city: "$mpg_city"}},
{ $sort : { mpg_city : -1 }},
],
function(err, result) {
console.dir(result);
// client.close();
});
//Ilość modeli przypadająca na każdą markę. Posortowana malejąco.
collection.aggregate([
{ $group : {
_id : "$make",
suma : {$sum: 1}
}},
{ $sort : { suma : -1 }
},
], function(err, result) {
console.dir(result);
//client.close();
});
//Ile jest modeli z automatyczną a ile z manualną skrzynią biegów.
collection.aggregate([
{ $group : {
_id : "$transmission",
suma : {$sum: 1}
}},
{ $sort : { suma : -1 }
},
], function(err, result) {
console.dir(result);
client.close();
});
});