Compare commits

..

No commits in common. "9a7978235b3bc1f59dfddab8cbd4141754af2665" and "371bf261b9eb8607bcf1f98864c22bba6c59fcad" have entirely different histories.

View File

@ -28,19 +28,16 @@ db.Employee.aggregate([
```mongodb ```mongodb
db.Employee.aggregate([ db.Employee.aggregate([
{ {
$match: { $match: { Designation: "Developer" }
Designation: "Developer"
}
}, },
{ {
$group: { $group: {
_id: "$Address.PAddr", _id: { $arrayElemAt: ["$Address.PAddr", 0] },
Total: { $sum: "$Salary" } TotalSalary: { $sum: "$Salary" }
} }
} }
]) ])
``` ```
3. Find Total Salary of Employee with Designation "Tester" for Each Company: 3. Find Total Salary of Employee with Designation "Tester" for Each Company: