찾다

 >  Q&A  >  본문

mongodb update + $or 无法准确更新数据

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
}
PHP中文网PHP中文网2757일 전553

모든 응답(1)나는 대답할 것이다

  • 阿神

    阿神2017-05-02 09:20:16

    잘못 쓴 글입니다! 글쓰기 방법에주의하십시오.

    으아아아

    회신하다
    0
  • 취소회신하다