Answers for "mongodb not in"

0

mongodb not in

#all documents whose country field value is not neither Portugal or Spain
query = db.collection.find({
    "country" : { '$nin': [
        'Portugal',
        'Spain']
    }
})
Posted by: Guest on February-25-2021

Python Answers by Framework

Browse Popular Code Answers by Language