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


当前回答

对于使用WiredTiger存储引擎的MongoDB 3.0部署,如果从mongo shell的一个版本运行db.getCollectionNames()3.0之前的版本或3.0兼容版本之前的驱动程序版本,db.getCollectionNames()将不返回任何数据,即使存在现有集合。

有关详细信息,请参阅。

其他回答

在>=2.x时,您可以

db.listCollections()

在1.x上,您可以做到

db.getCollectionNames()

显示表

切换到数据库后,该命令通常在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

如果要显示MongoDB shell(命令行)中的所有集合,请使用shell助手,

show collections

显示当前数据库的所有集合。如果您想从应用程序中获取所有集合列表,那么可以使用MongoDB数据库方法

db.getCollectionNames()

有关MongoDB shell助手的更多信息,请参阅mongoShell快速参考。