文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
$lookup
执行左连接到一个集合(unsharded),必须在同一数据库中
$lookup添加了一个新的数组字段,该字段的元素是 joined
集合中的匹配文档。
语法
$lookup 语法如下:
{
$lookup:
{
from: <collection to join>, #右集合
localField: <field from the input documents>, #左集合 join字段
foreignField: <field from the documents of the "from" collection>, #右集合 join字段
as: <output array field> #新生成字段(类型array)
}
}
Field | Description |
---|---|
from | 右集合,指定在同一数据库中执行连接的集合。此集合不能shared分片。 |
localField | 指定左集合(db.collectionname)匹配的字段。如果左集合不包含localField,$lookup 视为null值来匹配。 |
foreignField | 指定from集合(右集合)用来匹配的字段。如果集合不包含该字段,$lookup 视为null值来匹配。 |
as | 指定要添加到输入文档的新数组字段的名称。新的数组字段包含from集合中匹配的文档。如果在文档中指定的名称已经存在,现有的领域覆盖。 |
实例
使用$lookup集合连接
左集合 orders
内容如下
另外一个右集合 inventory
内容如下:
以下聚合操作对 orders左集合
左连接 inventory右集合
,通过 orders下的item
与 inventory集合的sku
:
值得注意:
- 两个集合必须在同一个
db
, orders
是左集合,左连接;- item是
orders
左集合字段; - sku是
inventory
右集合字段 item
为null, 左连接, 右集合sku
为null
</div> 操作执行返回结果如下:
{
"_id" : 1,
"item" : "abc",
"price" : 12,
"quantity" : 2,
"inventory_docs" : [
{ "_id" : 1, "sku" : "abc", description: "product 1", "instock" : 120 }
]
}
{
"_id" : 2,
"item" : "jkl",
"price" : 20,
"quantity" : 1,
"inventory_docs" : [
{ "_id" : 4, "sku" : "jkl", "description" : "product 4", "instock" : 70 }
]
}
{
"_id" : 3,
"inventory_docs" : [
{ "_id" : 5, "sku" : null, "description" : "Incomplete" },
{ "_id" : 6 }
]
}
$out
输出到集合
https://docs.mongodb.com/manual/reference/operator/aggregation/out/
db.books.aggregate( [
{ $group : { _id : "$author", books: { $push: "$title" } } },
{ $out : "authors" }
] )
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论