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