Answer the question
In order to leave comments, you need to log in
How to select multiple elements with different id in mongod?
There is a method in mongo client
db.users.find( { id: { $in: [ 390, 754, 454 ] } } );
db.collection("customers").find({id:390}, { _id: 0, name: 1 })
db.collection("customers").find({id:[390,410,666]}, { _id: 0, name: 1 })
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question