你可以做...
JS(外壳):
db.getCollectionNames()
node.js:
db.listCollections()
非 JS(仅限 Shell):
show collections
我称其为非 JS 的原因是:
$ mongo prodmongo/app --eval "show collections"
MongoDB shell version: 3.2.10
connecting to: prodmongo/app
2016-10-26T19:34:34.886-0400 E QUERY [thread1] SyntaxError: missing ; before statement @(shell eval):1:5
$ mongo prodmongo/app --eval "db.getCollectionNames()"
MongoDB shell version: 3.2.10
connecting to: prodmongo/app
[
"Profiles",
"Unit_Info"
]
如果您真的想要那种甜美,甜美的show collections
输出,则可以:
$ mongo prodmongo/app --eval "db.getCollectionNames().join('\n')"
MongoDB shell version: 3.2.10
connecting to: prodmongo/app
Profiles
Unit_Info
> show collections
如命令行帮助( help
)中所述,它将列出当前所选数据库中的所有集合。
如何列出正在使用的当前数据库的所有集合?
show collections
show tables
db.getCollectionNames()
show dbs
use databasename
show collections
输出:
collection1 collection2 system.indexes
(要么)
show tables
输出:
collection1 collection2 system.indexes
(要么)
db.getCollectionNames()
输出:
[ "collection1", "collection2", "system.indexes" ]
use collectionname