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

MongoDB verschachteltes ODER/UND Wo?

Die Abfrage in MongoDB sieht folgendermaßen aus:

Database.collection_name.find(
    // This is the condition
    {
        $and: [
           {
               $or: [
                   {province: 'nb'},
                   {province: 'on'}
               ]
           },
           {
               city: "toronto"
           },
           {
               first_name: "steven"
           }
        ]
    },

    // Specify the fields that you need
    {
        first_name: 1,
        _id: 1
    }
)

Dokumentation für $und $oder

Einige Beispiele und die offizielle Dokumentation zu MongoDB finden Sie hier.