mongodb update + $or 无法准确更新数据
PHP中文网
PHP中文网 2017-05-02 09:18:16
0
1
552

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中文网

认证0级讲师

membalas semua(1)
阿神

Tulisan yang salah! Perhatikan cara penulisan atau.

db.getCollection('test').update( 
    {$or: [{c1:true}, {c2: true  }] } ,
    {$set: {rs:  true }},
    {multi:true}
)
Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan