Created
August 15, 2015 01:44
-
-
Save shamalroy/daeb49bc0a7256334eb9 to your computer and use it in GitHub Desktop.
MongoDB find documents
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
db.myCollection.find({ "name": "Manhattan" }) | |
db.myCollection.find({ "detail.age": 25 }) | |
db.myCollection.find({ "detail.age": { $lt: 60 }}) | |
db.myCollection.find({ $or: [{"name": "My Name"}, {"detail.age": 25 } ]}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment