Contents of page >
- FIND Example > find document where _id=1
- 1) FIND Example > find document where _id=1 >
- 2) FIND Example > find document where firstName= "sam" >
FIND Example > find document where _id=1
First, Let's create new collection and insert document in it >
> db.employee.insert({_id : 1, firstName:"ankit"})
> db.employee.insert({_id : 2, firstName:"ankit", salary : 1000 })
> db.employee.insert({_id : 3, firstName:"sam", salary : 2000 })
> db.employee.insert({_id : 4, firstName:"neh", salary : 3000 })
|
First line above will create table (or collection) (if table already exists it will insert documents in it).
1) FIND Example > find document where _id=1 >
> db.employee.find({_id:1})
|
Output>
{ "_id" : 1, "firstName" : "ankit" }
|
2) FIND Example > find document where firstName= "sam" >
> db.employee.find({firstName:"sam"})
|
Output>
{ "_id" : 3, "firstName" : "sam", "salary" : 2000 }
|
SUMMARY>
So in this mongoDB tutorial we learned how to Query (read/ display/ find/ search/ select) documents in collection in mongoDB.
Having any doubt? or you liked the tutorial! Please comment in below section.
Please express your love by liking JavaMadeSoEasy.com (JMSE) on facebook, following on google+ or Twitter.
RELATED LINKS>
What is MongoDB - A quick introduction to database
Labels:
MongoDB
Query MongoDB