sql >> Database teknologi >  >> NoSQL >> MongoDB

Hvordan laver man indlejret $lookup-søgning i MongoDB?

$lookup 3.6 syntaks giver dig mulighed for at forbinde indlejrede tabeller og $unwind to dekonstruerer et matrixfelt fra inputdokumenterne for at udskrive et dokument for hvert element. Sådan noget her

position.aggregate([
  { "$lookup": {
    "from": "companies",
    "let": { "companyId": "$company_id" },
    "pipeline": [
      { "$match": { "$expr": { "$eq": [ "$_id", "$$companyId" ] } } },
      { "$lookup": {
        "from": "industries",
        "let": { "industry_id": "$industry_id" },
        "pipeline": [
          { "$match": { "$expr": { "$eq": [ "$_id", "$$industry_id" ] } } }
        ],
        "as": "industry"
      }},
      { "$unwind": "$industry" }
    ],
    "as": "company"
  }},
  { "$unwind": "$company" }
])

Med 3.4-versionen

position.aggregate([
  { "$lookup": {
    "from": "companies",
    "localField": "company_id",
    "foreignField": "_id",
    "as": "companies"
  }},
  { "$unwind": "$companies" },
  { "$lookup": {
    "from": "industries",
    "localField": "companies.industry_id",
    "foreignField": "_id",
    "as": "companies.industry"
  }},
  { "$unwind": "$companies.industry" },
  { "$group": {
    "_id": "$_id",
    "companies": { "$push": "$companies" }
  }}
])



  1. Sådan gendannes fra en MongoDB-tilbageføring?

  2. Trin til at installere MongoDB på Amazon Linux

  3. MongoDB-forespørgsel med en 'eller'-betingelse

  4. Konverter ObjectID (Mongodb) til String i JavaScript