mongodb的安裝以及使用
官網下載安裝包
安裝
- 在安裝目錄下建立data檔案
- 啟動服務端
//根據自己的安裝目錄適當修改命令
D:MongoDBServer3.2inmongod.exe --dbpath "D:MongoDBdata" --journal --storageEngine=mmapv1
執行命令之後,如果出現最後一行
waiting for connections on port 27017
則證明開啟資料庫成功
- 啟動客戶端
在bin檔案下開啟mongo.exe
使用
在客戶端使用命令
- 查詢所有資料庫
show dbs
- 切換/建立資料庫
use student
- 顯示當前db狀態
db.stats()
- 查詢資料表
show collections;
- 插入資料
db.student.insert({name:"redrice",age:31,sex:1});
db.student.insert({name:"jiayunzhe",age:21,sex:1});
db.student.insert({name:"liuhui",age:23,sex:0});
- 查詢 資料
db.student.find({sex:1})
- 修改資料
db.student.update({name:"jiayunzhe"},{$set:{age:26}})
- 刪除資料
db.student.remove({name:"redrice"});
使用mongodb視覺化工具
MongoBooster
下載地址:http://mongobooster.com/downl…
MongoChef
個人免費,用於商業需要有授權
下載地址:http://3t.io/mongochef/downlo…
在nodejs操作mongodb
- mongodb
- mongoose
http://mongoosejs.com/docs/in…