MongoDBでコレクションを一覧で取得する方法

環境
debian 11.2
MongoDB 5.0.6

書式
show collections
「show collections」を使用して、コレクション(テーブル)を取得します。

操作例
1.現在のコレクションを確認します

> show collections
employee
user

2.コレクションを追加します

> db.createCollection('addr')
{ "ok" : 1 }

3.追加後コレクションを確認します

> show collections
addr
employee
user

 

MongoDB

Posted by arkgame