Select a document in MongoDB
Answer:
To select (find) a document in MongoDB, you can use the following syntax in the mongodb Interactive shell.
use my_db
db.users.find({name:"peter"})
You need to switch to the current database (e.g. my_db) and then execute your select statement.