石小疯 发表于 2024-6-10 19:10:49

Mongodb聚合操纵中的$unset

学习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"]}])








免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: Mongodb聚合操纵中的$unset