TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Rahul Sharma
NA
289
81.7k
Summation of sub document field based on a group unexpected
Jun 17 2016 8:09 AM
I have a document structured as
{
"_id" : ObjectId("5763d4a54da83b98f269878a"),
"Company_id" : "INTG",
"First_Name" : "fgfg",
"Last_Name" : "Sharma",
"Emp_Id" : "301",
"Department" : "QA",
"Emp_Status" : "Active",
"Salary" : {
"HRA" : "1200",
"Basic" : "1000",
"Home_Allowance" : "100",
"Other_Allowance" : "400"
}
}
{
"_id" : ObjectId("5763d4b94da83b98f269878b"),
"Company_id" : "INTG",
"First_Name" : "reena",
"Last_Name" : "Sharma",
"Emp_Id" : "301",
"Department" : "QA",
"Emp_Status" : "Active",
"Salary" : {
"HRA" : "200",
"Basic" : "1000",
"Home_Allowance" : "100",
"Other_Allowance" : "100"
}
}
And i want to get sum of basic salary based on department Like
**Expected output**
**Department Total_Basic**
QA 2000
I have used the following code to get the output
db.Employee_Detail.aggregate([
{$unwind:"$Salary"}, {$group: {"_id": "$Department", total_Basic: {$sum: "$Salary.Basic" }
}}
])
But i get the below Result....
Department Total_Basic
QA 0
I think $unwind is not Working..Please suggest
Reply
Answers (
0
)
what is the Querry Of Percentage?
List to be saved in DB with parent child relation.