I have created one table. example
use abc
db.test.create( {rollid: 4451, Name : "MongoDb"}, {rollid: 4452, Name : "casandra"})
Now i need only one filed value without id.
I tried with the below query but id also displayed.
db.test.find({},{Name : "Mongodb"})
Here i received the output
{ "_id" : ObjectId("5bec88847825b85d854cd6e3"), "Name" : "MongoDb" }
But i don't need combination of "_id" and Name. I need only Mongodb name.
How can i retrieve only one filed value without id?