在MongoDB shell中,如何列出当前使用的数据库的所有集合?


当前回答

显示表

显示表格

or

db.getCollectionNames();

其他回答

Try:

help // To show all help methods
show dbs  // To show all dbs
use dbname  // To select your db
show collections // To show all collections in selected db

首先,您需要使用数据库来显示其中的所有集合/表。

>show dbs
users 0.56787GB
test (empty)
>db.test.help() // this will give you all the function which can be used with this db
>use users
>show tables //will show all the collection in the db

在>=2.x时,您可以

db.listCollections()

在1.x上,您可以做到

db.getCollectionNames()

使用mongo shell中的以下命令:

show collections

除了其他人建议的选项外:

show collections  // Output every collection
show tables
db.getCollectionNames() // Shows all collections as a list

如果您想知道每个集合是如何创建的(例如,它是一个具有特定大小的上限集合),还有另一种方法非常方便:

db.system.namespaces.find()