List all collections in database
show collections
or
show tables
or
db.getCollectionNames()
List all databases
show dbs
or
db.adminCommand(‘listDatabases‘)
or
db.getMongo().getDBNames()
show collections
or
show tables
or
db.getCollectionNames()
show dbs
or
db.adminCommand(‘listDatabases‘)
or
db.getMongo().getDBNames()
EtiketlerMongoDB
Type Comparison There are two types of comparison: loose comparison with == and strict comparison …