Answers for "how to view db in mongodb collections"

8

show collections in mongodb

db.getCollectionNames()
Posted by: Guest on June-08-2020
0

view mongodb database

>db.mycol.insert({
   _id: ObjectId(7df78ad8902c),
   title: 'MongoDB Overview', 
   description: 'MongoDB is no sql database',
   by: 'tutorials point',
   url: 'http://www.tutorialspoint.com',
   tags: ['mongodb', 'database', 'NoSQL'],
   likes: 100
})
Posted by: Guest on March-16-2021

Code answers related to "how to view db in mongodb collections"

Browse Popular Code Answers by Language