安裝成功後,建立乙個存放資料庫的資料夾,開啟shell輸入
mongod --dbpath f:\mongodb(路徑位址)
令開啟乙個shell輸入
mongo
使用資料庫、建立資料庫
use student
資料庫中不能直接插入資料,只能往集合(collections)中插入資料。不需要專門建立集合,只需要寫點語法插入資料就會建立集合:
db.student.insert(
)
自動建立了集合student
顯示當前的資料庫
show dbs
顯示當前的資料集合
show collections
刪除資料庫
db.dropdatabase(
)
刪除集合
db.user.drop(
)
查詢所有記錄
db.userinfo.find(
)
查詢去掉後的當前聚集集合中的某列的重複資料
db.userinfo.distinct(
"name"
);
查詢age = 22的記錄
db.userinfo.find(
)
查詢age > 22的記錄
db.userinfo.find(
})
查詢age< 22的記錄
db.userinfo.find(
})
查詢age >= 25的記錄
db.userinfo.find(
})
查詢age <= 25的記錄
db.userinfo.find(
})
查詢name中包含 mongo的資料
db.userinfo.find(
)
查詢指定列name、age資料
db.userinfo.find(
, )
查詢指定列name、age資料, age > 25
db.userinfo.find(
}, )
按照年齡排序 1公升序 -1降序
公升序:db.userinfo.find(
).sort();
降序:db.userinfo.find(
).sort(
);
查詢在5-10之間的資料
db.userinfo.find(
).limit(10).skip(5)
or 查詢
db.userinfo.find(, ]
})
查詢某個結果集的記錄條數 統計數量
db.userinfo.find(
}).count(
);
db.student.update(,}
);
(部分修改)
db.student.update(
,)
(完全修改)
db.collectionsnames.remove(
)
MongoDB的安裝與基本操作
一.mongodb的安裝 安裝 2.解壓到自己建立的命名為mongo的資料夾下d programspecial mongo 3.建立mongodb的資料資料夾d programspecial mongo mongodata 啟動伺服器 mongod dbpath d programspecial m...
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資料庫的...