在 MongoDB 中,可以使用 aggregate
方法来实现子查询。aggregate
方法接受一个管道参数,可以使用 $lookup
操作符来执行子查询。
以下是一个示例:假设有两个集合 orders
和 products
,orders
集合包含订单信息,products
集合包含产品信息。现在想要查询所有订单,并将订单中的产品信息嵌入到订单文档中。
首先,我们将创建一个名为 orders
的集合,并插入一些示例数据:
db.orders.insertMany([
{ _id: 1, product_id: 101, quantity: 2 },
{ _id: 2, product_id: 102, quantity: 1 },
{ _id: 3, product_id: 103, quantity: 3 },
]);
然后,创建一个名为 products
的集合,并插入一些示例数据:
db.products.insertMany([
{ _id: 101, name: 'Product 1' },
{ _id: 102, name: 'Product 2' },
{ _id: 103, name: 'Product 3' },
]);
现在,可以使用 aggregate
方法来实现子查询,并将产品信息嵌入到订单文档中:
db.orders.aggregate([
{
$lookup: {
from: 'products',
localField: 'product_id',
foreignField: '_id',
as: 'product',
},
},
]);
执行上述代码后,将会得到一个包含所有订单及其产品信息的结果集。
以上就是在 MongoDB 中实现子查询的方法。