Answers for "mongodb query criteria where is multiple"

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 "mongodb query criteria where is multiple"

Browse Popular Code Answers by Language