Answers for "display collection in mongodb"

8

show collections in mongodb

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

list all collections in the MongoDB shell

JavaScript (shell):
db.getCollectionNames()

Node.js:
db.listCollections()
Posted by: Guest on July-19-2020
1

mongodb show collections

>show collections
Posted by: Guest on August-21-2021
3

show collection data in mongodb

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

create collection in mongodb stack overflow

> use testdb
switched to db testdb
> db.createCollection("testcollection")
{ "ok" : 1 }
> db.getCollectionNames()
[ "system.indexes", "testcollection" ]
>
Posted by: Guest on May-01-2020

Code answers related to "display collection in mongodb"

Browse Popular Code Answers by Language