suchen

Heim  >  Fragen und Antworten  >  Hauptteil

mongoDB的update查询条件?

小白提问.

db.users.insert({"name": "demo"})

以上插入十遍.

db.users.update({"name": "demo"}, {$set: {"age": 24}})

这条案例来说应该十条记录全部匹配上,但是为什么仅仅匹配了第一条呢?

我想大声告诉你我想大声告诉你2761 Tage vor733

Antworte allen(3)Ich werde antworten

  • 世界只因有你

    世界只因有你2017-04-28 09:08:34

    https://docs.mongodb.org/getting-started/shell/update/#update-multiple-documents

    Antwort
    0
  • ringa_lee

    ringa_lee2017-04-28 09:08:34

    基础不太牢固,多看手册。

    db.users.update({"name": "demo"}, {$set: {"age": 24}},{multi: true})
    
    db.collection.update(
       <query>,
       <update>,
       {
         upsert: <boolean>,
         multi: <boolean>,
         writeConcern: <document>
       }
    )
    

    Antwort
    0
  • 阿神

    阿神2017-04-28 09:08:34

    db.users.update({},{},true,true)大括号里面的不变,默认的是更新一条,加上两个参数true就行了!

    Antwort
    0
  • StornierenAntwort