Answers for "mongodb shell search"

3

show collection data in mongodb

db.collectionName.find()
Posted by: Guest on November-02-2020
3

operator to return specific data of a mongodb query

db.inventory.find( { status: "A" }, { item: 1, status: 1 } )
Posted by: Guest on September-04-2020

Browse Popular Code Answers by Language