MongoDB Shell使用

MongoDB Compass的启动:

mongodb-compass

单击MongoDB Compass下方的 MongoSH Beta,从而启动MongoDB Shell
在这里插入图片描述
当使用MongoDB Shell时,默认连接到名为test的数据库,如果需要切换不同的数据库,使用以下命令:

use <database name>

如果需要进行查找,如下,AutoSPIResultcollection

db.AutoSPIResult.find( {"TestResult":"pass"} )

如果需要同时查找多个条件则用,连接即可:

db.AutoSPIResult.find({"TestResult":"pass","LineName":"12345"})

如果需要查找的是Array里的元素,则用.连接,这里DetailInfoArray

db.AutoSPIResult.find({"DetailInfo.Component":"Q5870"})

常用命令之mongodb
查询chunks文件内容:

db.getCollection('fs.chunks').find({"字段":"内容"})

查询所有:

db.getCollection('fs.chunks').find({})

统计数量

db.getCollection('fs.chunks').find({}).count()

根据时间排序:

db.getCollection('fs.files').find({}).sort({'uploadDate':-1})

根据_id查询:

db.getCollection('fs.files').find({'_id':ObjectId("5f165b70eece4b030cf9ee4f")})

根据某个字段模糊查询:


db.getCollection('fs.files').find({'filename':/^.*demo.*$/})

db.getCollection('fs.files').find({}).size()

db.getCollection('fs.files').find({'filename':/^.*demo.*$/}).size()

根据.files文件查询结果查询.chunks文件

db.getCollection("SPIResult.files").find({"metadata.SN":"FV9021423QJMYD5BH"})
db.getCollection("SPIResult.chunks").find({"files_id":ObjectId("5ec62c0419d9843f4cb76a32")})

参考链接:
MongoDB Compass的安装:Download and Install Compass
Embedded MongoDB ShellEmbedded MongoDB Shell
官方Query 语法:Query Documents
db.collection.find()方法

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值