mongodb常用语句

来源:互联网 发布:平湖市行知小学校长 编辑:程序博客网 时间:2024/05/29 16:00
  1. 更新某个字段
db.getCollection('global_feed_view').update(    // query    {        "key" : "myyule_feed_blog"    },    // update    {        $set:{"list":["56c5a1a984ae83835d4fb307"]}    },    // options    {        "multi" : false,  // update only one document        "upsert" : false  // insert a new document, if no existing document match the query    });

2 . 更新某一字段为int类型

 $set:{"followerCount":NumberInt(0)}
原创粉丝点击