Go教程

mongodb 的进库操作

本文主要是介绍mongodb 的进库操作,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

mongo

 

show dbs

 

use  xxx

 

show collections

 

db.xxx.insert({}) // 添加一个空内容

 

db.xxx.find()

 

db.users.update({ "_id" : ObjectId("xxxx")},{$set:{"xxx":true}})

 

db.users.update({'_id': ObjectId("5b70ef06db6824249420a31d")},{$set:{issuper: true}}) // 给这个id 的isspuer 设置为true

 

db.getCollection('users').updateMany({ name: /.$/ }, {$set:{"payType": "1"}});

// 修改所有的name payType 为1

 

>WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })

 

db.products.insert( { item: "card", qty: 15 } )



 

这篇关于mongodb 的进库操作的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!