Compare commits
No commits in common. "9a7978235b3bc1f59dfddab8cbd4141754af2665" and "371bf261b9eb8607bcf1f98864c22bba6c59fcad" have entirely different histories.
9a7978235b
...
371bf261b9
@ -28,19 +28,16 @@ db.Employee.aggregate([
|
||||
```mongodb
|
||||
db.Employee.aggregate([
|
||||
{
|
||||
$match: {
|
||||
Designation: "Developer"
|
||||
}
|
||||
$match: { Designation: "Developer" }
|
||||
},
|
||||
{
|
||||
$group: {
|
||||
_id: "$Address.PAddr",
|
||||
Total: { $sum: "$Salary" }
|
||||
_id: { $arrayElemAt: ["$Address.PAddr", 0] },
|
||||
TotalSalary: { $sum: "$Salary" }
|
||||
}
|
||||
}
|
||||
])
|
||||
|
||||
|
||||
```
|
||||
|
||||
3. Find Total Salary of Employee with Designation "Tester" for Each Company:
|
||||
|
Loading…
Reference in New Issue
Block a user