$lookup

作者: 领悟悟悟 | 来源:发表于2017-12-26 19:17 被阅读0次
    会把连接后的数据组成一个列表,拆分列表,查询匹配
    db.Event.aggregate([
      {'$match':{'system':'Stat'}},
      {
        $lookup:
           {
              from: "Stat",
              localField: "_id",
              foreignField: "eventId",
              as: "inventory_docs"
          },
       },
          { "$unwind": "$inventory_docs" },
          {'$match':{'inventory_docs.city':'北京'}},        
    ])

    相关文章

      网友评论

          本文标题:$lookup

          本文链接:https://www.haomeiwen.com/subject/ymxsgxtx.html