一.mongodb的安裝:
【安裝】
2.解壓到自己建立的命名為mongo的資料夾下d:\programspecial\mongo
3.建立mongodb的資料資料夾d:\programspecial\mongo\mongodata
【啟動伺服器】
mongod --dbpath="d:\programspecial\mongo\mongodata" --logpath="d:\programspecial\mongo\logss\mongodb.log" --port=27017
(設定資料資料夾,日誌位址,埠號)
二、mongodb的操作:
mongodb資料庫基本命令:
1.help檢視命令
db.help()
2.顯示當前資料庫的名字
db3.切換/建立資料庫
use 資料庫名:當建立乙個集合的時候會自動建立當前資料庫
use information
4.顯示所有資料庫
show dbs
5.刪除當前資料庫
db.dropdatabase()
6.顯示當前db狀態
db.stats()
7.顯示版本
db.version()
db.getmongo()
mongodb操作集合(collection)相關操作
1.建立集合
顯示建立
db.createcollection("information")
隱式建立
db.information.insert()
2.顯示所有集合
show collections()
show tables()
3.刪除集合
db.information.drop()
mongodb操作文件(document)相關操作
1.建立文件
db.information.insert(name:"hanhan",annimal:"dog",age:10)
2.刪除文件
db.information.remove({})
db.information.remove()
3.修改文件
db.information.update(query,update,upset,multi)
query 修改條件
update 更新命令
upset 0 無則不插入,1 無則插入
multi 0 單行更新,1 多行更新
4.修改文件具體案例
$set 相當於set
$inc 算術運算
db.information.update(,},1,1)
db.information.update({},},0,1)
MongoDB的安裝與基本操作(2)
安裝成功後,建立乙個存放資料庫的資料夾,開啟shell輸入 mongod dbpath f mongodb 路徑位址 令開啟乙個shell輸入 mongo 使用資料庫 建立資料庫 use student資料庫中不能直接插入資料,只能往集合 collections 中插入資料。不需要專門建立集合,只需...
MongoDB的安裝與基本使用
mongodb官網 download center community mongodb for windows 64 bit 適合 64 位的 windows server 2008r2,windows 7 及最新版本的 window 系統。mongodb for windows 32 bit 適合...
MongoDB介紹與基本操作
1.設定資料庫儲存位置 mongod dbpath 目錄 e.g 將儲存路徑設定為dbs mongod dbpath dbs 2.設定資料庫監聽埠 mongod port 8080 預設監聽埠為27017 3.進入資料庫互動操作介面 mongo mongo shell 用來操作mongodb資料庫的...