Answers for "match with multiple criteria mongodb"

Go
0

mongodb find multiple criteria

db.emp.find({
    "type" : { "$in": ["WebUser", "User"] },
    "city" : { "$in": ["Pune", "Mumbai"] }
})
Posted by: Guest on January-26-2022

Code answers related to "match with multiple criteria mongodb"

Browse Popular Code Answers by Language