学习mongodb,体会mongodb的每一个使用细节,欢迎阅读威赞的文章。这是威赞发布的第62篇mongodb技术文章,欢迎浏览本专栏威赞发布的其他文章。
提到unset, 首先想到的是update操作中,使用unset删除冗余字段。而在聚合操作中的unset与UPDATE中的有什么不同, 通过本篇文档的描述就可以搞清楚。
定义
在聚合操作中,排除一些字段的返回。聚合操作中的$unset并没有对数据产生影响,而只是在返回结果中将不需要的字段排除。
语法
聚合操作中,在返回结果中排除单个字段
{$unset: "<field>"}
向$unset方法传入数组,在返回结果中排除多个字段
{$unset: ["<field1>", "<field2>", ...]}
unset是投射操作project中排除字段的另外一种实现方法
{$project: {"<field1>":0, "<field2>":0, ...}}
在嵌套文档中,使用点操作符定义需要排除的字段。
{$unset: "<field.nestedfield>"}
{$unset: ["<field.nestedfield>", ...]}
应用
创建集合books并插入数据
db.books.insertMany([
{ "_id" : 1, title: "Antelope Antics", isbn: "0001122223334", author: { last:"An", first: "Auntie" }, copies: [ { warehouse: "A", qty: 5 }, { warehouse: "B", qty: 15 } ] },
{ "_id" : 2, title: "Bees Babble", isbn: "999999999333", author: { last:"Bumble", first: "Bee" }, copies: [ { warehouse: "A", qty: 2 }, { warehouse: "B", qty: 5 } ] }
])
在聚合操作中,排除一个字段
db.books.aggregate([{$unset: "copies"}])
db.books.aggregate([{$unset: ["copies"]}])
排除多个字段
db.books.aggregate([{$unset: ["copies", "isbn"]}])
排除嵌套文档中的字段
db.books.aggregate([{$unset: ["isbn", "author.first", "copies.warehouse"]}])