MongoDBコマンドメモ 2018年5月23日 / 1 min read View more blogs with the tag mongodb Table of Contents #はじめに #内容 はじめに MongoDBの基本コマンドです。 内容 Terminal window# ログイン$ mongo # DB一覧show dbs; # コレクション一覧use db\_name; show collections; # DB削除use db\_name; db.dropDatabase(); # コレクション削除use db\_name; db.collection\_name.Database();