我在 mongodb 中有以下文档
{
"CompanyCode" : "xyz",
"TktDetail" : [
{
"Type" : "ab yyy (123+4)",
"Qty" : [{
"1-Aug" : 48
}, {
"1-Sep" : 42
}]
},
{
"Type" : "bc xyz (123+4)",
"Qty" : [{
"10-Aug" : 2
}, {
"10-Sep" : 2
}, {
"11-Sep" : 2
}]
}]
}
我想更新嵌入在数组1-Aug
中的数组中的值。Qty
TktDetail
我曾尝试使用以下查询。它没有更新
db.test.update({"CompanyCode":"xyz","TktDetail.type":"ab yyy (123+4)"},{$set:{"TktDetail.$.Qty.$.1-Aug":55}});
任何帮助都会很棒。