Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
mongodbdb.getCollectionNames()命令将在列表中为您提供当前数据库中的所有集合名称。
db.getCollectionNames()
我想要使用 pymongo 的相同输出。我用谷歌搜索了一段时间,找不到类似的东西。
有这样的东西吗?
collection_names()
将向您显示当前数据库的集合。
从文档:
获取此数据库中所有集合名称的列表。 [阅读更多]
自 pymongo 3.7 以来,collection_names()已弃用,获取集合名称的正确方法是list_collection_names()
list_collection_names()