MongoDBコマンドメモ2018/5/23 / 1 min readView more blogs with the tag mongodbTable 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();