我如何在Mongodb中做'show'语句

时间:2012-01-28 07:46:10

标签: mongodb

当我想知道mongodb中有哪些数据库以及数据库中有哪些集合(等于SQL中的show tables语句)时,我应该使用什么命令?我只在文档中找到{dbStats:1},只能在没有集合列表的情况下显示有关当前数据库的信息。

2 个答案:

答案 0 :(得分:1)

请参阅official document

show dbs            displays all the databases on the server you are connected to
use db_name         switches to db_name on the same server
show collections    displays a list of all the collections in the current database 

答案 1 :(得分:0)