mongodb $update + $or 無法準確更新資料
使用語句:
db.getCollection('test').update(
{$or: [{c1:true, c2: true }] } ,
{$set: {rs: true }},
{multi:true}
)
需要3行都更新,但只更新了1行($or被當成了$and)
資料如下:
/* 1 */
{
"c1" : true
}
/* 2 */
{
"c2" : true
}
/* 3 */
{
"c1" : true,
"c2" : true
}
阿神2017-05-02 09:20:16
寫錯啦!注意or的寫法。
db.getCollection('test').update(
{$or: [{c1:true}, {c2: true }] } ,
{$set: {rs: true }},
{multi:true}
)