Mongo shell 如何列出所有的集合collection
Mongo有几种方法可以用来列出所有的collection:
JS shell:
db.getCollectionNames()
node.js:
db.listCollections()
shell脚本
show collections
执行shell脚本
mongo test/test --eval "show collections"
Mongo有几种方法可以用来列出所有的collection:
JS shell:
db.getCollectionNames()
node.js:
db.listCollections()
shell脚本
show collections
执行shell脚本
mongo test/test --eval "show collections"