MongoDB 对象操作

时间:2021-05-20 11:46:45

对象插入

>db.col.insert({title: 'MongoDB 教程',
description: 'MongoDB 是一个 Nosql 数据库',
by: 'xxx',
url: 'https://www.cnblogs.com/sea-stream/',
tags: ['mongodb', 'database', 'NoSQL'],
likes:
})

输出

WriteResult({ "nInserted" :  })

使用 find() 函数查询数据

> db.col.find()
{ "_id" : ObjectId("56066169ade2f21f36b03137"), "title" : "MongoDB 教程", "description" : "MongoDB 是一个 Nosql 数据库", "by" : "xxx", "url" : "https://www.cnblogs.com/sea-stream/", "tags" : [ "mongodb", "database", "NoSQL" ], "likes" : }
{ "_id" : ObjectId("5606616dade2f21f36b03138"), "title" : "MongoDB 教程", "description" : "MongoDB 是一个 Nosql 数据库", "by" : "xxx", "url" : "https://www.cnblogs.com/sea-stream/", "tags" : [ "mongodb", "database", "NoSQL" ], "likes" : }

移除 title 为 'MongoDB 教程' 的对象

>db.col.remove({'title':'MongoDB 教程'})
WriteResult({ "nRemoved" : }) # 删除了两条数据
>db.col.find()
> # 没有数据

只想删除第一条找到的记录可以设置 justOne 为 1

>db.COLLECTION_NAME.remove(DELETION_CRITERIA,)

删除所有数据,可以使用以下方式

>db.col.remove({})
>db.col.find()
>

删除集合下全部文档

db.inventory.deleteMany({})

删除 status 等于 A 的全部文档

db.inventory.deleteMany({status : "A"})

删除 status 等于 D 的一个文档

db.inventory.deleteOne({status: "D"})

remove() 方法 并不会真正释放空间。

需要继续执行 db.repairDatabase() 来回收磁盘空间

> db.repairDatabase()
或者
> db.runCommand({ repairDatabase: })