Home | 簡體中文 | 繁體中文 | 雜文 | 打賞(Donations) | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 知乎專欄 | 視頻教程 | About

第 45 章 MongoDB Shell

目錄

45.1. shutdownServer
45.2. show 查看命令
45.2.1. show dbs
45.2.2. show collections
45.2.3. show users
45.2.4. show profile
45.3. 切換資料庫
45.4. save
45.5. insert
45.6. update
45.6.1. multi 更新所有數據
45.6.2. upsert 更新,如果不存在則插入數據
45.7. remove
45.7.1. 刪除條件使用 _id
45.8. 刪除 collection
45.8.1. 刪除欄位
45.9. count()
45.10. 查詢
45.10.1. find() MongoDB 2.x
45.10.2. find() MongoDB 3.x
45.10.2.1. Query
45.10.2.2. 包含欄位
45.10.2.3. 排除欄位
45.10.2.4. sort()
45.10.3. group()
45.11. aggregate
45.11.1. project
45.11.1.1. $split
45.11.1.2. substr
45.11.2. groupby + sum
45.12. Indexes 索引
45.12.1. 查看索引
45.12.2. 創建索引
45.12.3. 刪除索引
45.12.4. 唯一索引
45.12.5. 復合索引
45.12.6. 稀疏索引
45.13. Map-Reduce
45.13.1. 使用 Map-Reduce 統計Web 伺服器 access.log 日誌檔案
45.14. 內嵌對象
45.14.1. Array / List 列表類型
45.15. Javascript 腳本

45.1. shutdownServer

關閉MongoDB資料庫

		
db.shutdownServer()