-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueries.txt
139 lines (137 loc) · 3.38 KB
/
queries.txt
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
total_races
[
{
// Step 1: Group by driverId and count the total races
$group: {
_id: "$driverId",
// Group by driverId
totalRaces: {
$sum: 1
} // Count the total number of races
}
},
{
// Step 2: Lookup to join with the drivers_id collection
$lookup: {
from: "drivers_id",
// The collection with driver details
localField: "_id",
// driverId from the grouped data
foreignField: "driverId",
// driverId field in drivers_id
as: "driverDetails" // Alias for the joined data
}
},
{
// Step 3: Unwind the driverDetails array to normalize
$unwind: "$driverDetails"
},
{
// Step 4: Project the desired fields: name and total races
$project: {
_id: 0,
// Hide the default _id
driverName: {
$concat: [
"$driverDetails.forename",
" ",
"$driverDetails.surname"
]
},
// Combine forename and surname
totalRaces: 1 // Include the total races
}
},
{
// Step 5: Sort the results by totalRaces in descending order
$sort: {
totalRaces: -1
}
}
]
most races
[
{
// Step 1: Group by driverId and count the total races
$group: {
_id: "$driverId", // Group by driverId
totalRaces: { $sum: 1 } // Count the total number of races
}
},
{
// Step 2: Lookup to join with the drivers_id collection
$lookup: {
from: "drivers_id", // The collection with driver details
localField: "_id", // driverId from the grouped data
foreignField: "driverId", // driverId field in drivers_id
as: "driverDetails" // Alias for the joined data
}
},
{
// Step 3: Unwind the driverDetails array to normalize
$unwind: "$driverDetails"
},
{
// Step 4: Project the desired fields: name and total races
$project: {
_id: 0, // Hide the default _id
driverName: {
$concat: [
"$driverDetails.forename",
" ",
"$driverDetails.surname"
]
}, // Combine forename and surname
totalRaces: 1 // Include the total races
}
},
{
// Step 5: Sort the results by totalRaces in descending order
$sort: { totalRaces: -1 }
}
]
most wins
[
{
// Step 1: Filter race results to include only wins (position: 1)
$match: { position: 1 }
},
{
// Step 2: Group by driverId and count the number of wins
$group: {
_id: "$driverId", // Group by driverId
totalWins: { $sum: 1 } // Count total wins
}
},
{
// Step 3: Lookup to join with the drivers_id collection
$lookup: {
from: "drivers_id", // The collection with driver details
localField: "_id", // driverId from the grouped data
foreignField: "driverId", // driverId field in drivers_id
as: "driverDetails" // Alias for the joined data
}
},
{
// Step 4: Unwind the driverDetails array to normalize
$unwind: "$driverDetails"
},
{
// Step 5: Project the desired fields: name and total wins
$project: {
_id: 0, // Hide the default _id
driverName: {
$concat: [
"$driverDetails.forename",
" ",
"$driverDetails.surname"
]
}, // Combine forename and surname
totalWins: 1 // Include the total wins
}
},
{
// Step 6: Sort the results by totalWins in descending order
$sort: { totalWins: -1 }
}
]