mongodb 的进库操作
2021/5/14 2:26:05
本文主要是介绍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 的进库操作的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26go.mod的文件内容是什么?-icode9专业技术文章分享
- 2024-11-23MongoDB身份认证机制揭秘!
- 2024-11-20MongoDB教程:从入门到实践详解
- 2024-11-17执行 Google Ads API 查询后返回的是空数组什么原因?-icode9专业技术文章分享
- 2024-11-17google广告数据不同经理账户下的凭证可以获取对方的api数据吗?-icode9专业技术文章分享
- 2024-11-15SendGrid 的 Go 客户端库怎么实现同时向多个邮箱发送邮件?-icode9专业技术文章分享
- 2024-11-15SendGrid 的 Go 客户端库怎么设置header 和 标签tag 呢?-icode9专业技术文章分享
- 2024-11-12Cargo deny安装指路
- 2024-11-02MongoDB项目实战:从入门到初级应用
- 2024-11-01随时随地一键转录,Google Cloud 新模型 Chirp 2 让语音识别更上一层楼