集合关联查询
-
mongodb两个集合关联查询
在MongoDB中,可以使用$lookup操作符进行两个集合的关联查询。db.collection1.aggregate([{$lookup: {from: “collection2”, localField: “localField”, foreignField: “foreignField”, as: “output”}}])。
在MongoDB中,可以使用$lookup操作符进行两个集合的关联查询。db.collection1.aggregate([{$lookup: {from: “collection2”, localField: “localField”, foreignField: “foreignField”, as: “output”}}])。