MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Unterstützt AWS DocumentDB das Verbinden von mehr als 3 Sammlungen in einer einzigen Abfrage?

In DocumentDB-Dokument :

In MongoDB-Dokument :

Gleichheitsübereinstimmung hat die folgende Syntax:

{
   $lookup:
     {
       from: <collection to join>,
       localField: <field from the input documents>,
       foreignField: <field from the documents of the "from" collection>,
       as: <output array field>
     }
}

unkorrelierte Unterabfragen hat die folgende Syntax:

{
   $lookup:
     {
       from: <collection to join>,
       let: { <var_1>: <expression>, …, <var_n>: <expression> },
       pipeline: [ <pipeline to execute on the collection to join> ],
       as: <output array field>
     }
}

Daher wird die 2. Syntax in DocumentDB nicht unterstützt.