(文章來自mongoDB mongo - The interactive章節)
//以下命令都是進入mongoDB Shell環境下使用
//進入Shell用的Linux命令 ./bin/mongo
Special Command Helpers
//以下命令都是進入mongoDB Shell環境下使用
//進入Shell用的Linux命令 ./bin/mongo
Special Command Helpers
Non-javascript convenience macros:
Show help
顯示最上層的幫助文件
- >help
顯示(資料庫)db系列命令的幫助文件
- >db.help()
Show help on collection methods
顯示(集合)myColl系列命令的幫助文件
- >db.myColl.help()
Print a list of all databases on this server
- >show dbs
Set the db variable to represent usage of dbname on the server
切換資料庫
- >use [db_name]
Print a list of all collections for current database
顯示所有的collections (mongoDB的collection 類似 MySQL的table)
- >show collections
Print a list of users for current database
列出當前資料庫用戶
- >show users
Print most recent profiling operations that took >= 1ms
列出最近的操作?
- >show profile
Basic Shell Javascript Operations
//未完
沒有留言:
張貼留言