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


当前回答

在>=2.x时,您可以

db.listCollections()

在1.x上,您可以做到

db.getCollectionNames()

其他回答

在>=2.x时,您可以

db.listCollections()

在1.x上,您可以做到

db.getCollectionNames()

>显示表格

它给出了与卡梅伦的答案相同的结果。

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

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

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

db.system.namespaces.find()

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

show collections

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

db.getCollectionNames()

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

显示表

显示表格

or

db.getCollectionNames();