溫馨提示×

mongodb怎么查看數(shù)據(jù)庫

小億
257
2024-04-08 12:56:37
欄目: 云計算

要查看MongoDB中的數(shù)據(jù)庫,可以使用以下命仗:

  1. 使用命令行工具進入MongoDB的交互式shell:
mongo
  1. 列出所有數(shù)據(jù)庫:
show dbs
  1. 切換到指定數(shù)據(jù)庫:
use <database_name>
  1. 查看當前所在數(shù)據(jù)庫中的集合(類似于表):
show collections
  1. 查看集合中的文檔(數(shù)據(jù)記錄):
db.<collection_name>.find()

通過以上命令可以查看MongoDB中的數(shù)據(jù)庫和其數(shù)據(jù)。

0