よく使う mongodb のコマンドメモ
- mongo DB シェルへのログイン
$ mongo
MongoDB shell version: 2.0.4
connecting to: test
- データベース名のリスト表示から選択
> show dbs devhub_chat_db 0.0625GB local (empty) test (empty) > use devhub_chat_db switched to db devhub_chat_db
- コレクション名の表示
> show collections
chat_log
latest_text
system.indexes
text_log
- コレクション内のデータを表示
> db.chat_log.find() データの内容・・
- 詳細はこちら