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


当前回答

在>=2.x时,您可以

db.listCollections()

在1.x上,您可以做到

db.getCollectionNames()

其他回答

使用mongo shell中的以下命令:

show collections

如何列出当前使用的数据库的所有集合?

三种方法

显示表显示表格db.getCollectionNames()


要列出所有数据库:

show dbs

要输入或使用给定数据库:

use databasename

要列出所有集合:

show collections

输出:

集合1集合2系统索引

(or)

show tables

输出:

集合1集合2系统索引

(or)

db.getCollectionNames()

输出:

[“collection1”,“collection2”,“system.indexs”]


输入或使用给定集合

use collectionname

显示表

显示表格

or

db.getCollectionNames();

可以使用显示表或显示集合。

> show collections

将列出当前选定DB中的所有集合,如命令行帮助(help)中所述。