簡介:
MongoDB與MySQL基本語句還是有很大區(qū)別的,今天再介紹一下MongoDB的一些常用的基本語句:
創(chuàng)新互聯(lián)公司長期為近1000家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為鎮(zhèn)巴企業(yè)提供專業(yè)的成都做網(wǎng)站、網(wǎng)站制作,鎮(zhèn)巴網(wǎng)站改版等技術(shù)服務(wù)。擁有10年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開發(fā)。
//進(jìn)入創(chuàng)建數(shù)據(jù)庫
use school; 如果創(chuàng)建集合則自動(dòng)創(chuàng)建數(shù)據(jù)庫,如果沒有創(chuàng)建集合則數(shù)據(jù)庫沒有創(chuàng)建
//創(chuàng)建集合
db.createCollection('class')
//查看庫
show dbs;
//查看集合
show tables;
//插入數(shù)據(jù)
db.class.insert({"id":1,"name":"zhangsan"})
db.class.insert({"sex":ture,"hobby":["sport","book","run"]})
//查看數(shù)據(jù)
db.class.find()
//多條插入
for (var i=2;i<=100;i++)db.class.insert({"id":i,"name":"jack"+i});
//查看某一條數(shù)據(jù)
db.class.findOne({"id":2})
//查找指定記錄并賦予別名a
a=db.class.findOne({"id":2})
//查看類型
typeof(a.id)
number
typeof(a.name)
String
//修改數(shù)據(jù):
db.info.update({"id":10},{$set:{"name":"tom10"}}) 格式:條件在前,修改在后
db.info.findOne({"id":10})
{
"_id" : ObjectId("5b972d38fb89e57a63998a84"),
"id" : 10,
"name" : "tom10"
//聚合函數(shù)統(tǒng)計(jì)記錄
db.info.count()
101
//刪除集合
db.class.drop()
//刪除數(shù)據(jù)庫
db.dropDatabase()
//刪除數(shù)據(jù)
db.class.remove({"id":100});
//更改
db.class.update({"id":10},{$set:{"name":"tom"}});
---------------------------------------導(dǎo)入導(dǎo)出-------------------------------------------------
//插入100條數(shù)據(jù)
for(var i=1;i<=100;i++)db.class.insert({"id":i,"name":"jack"+i})
db.class.count()
顯示100
//數(shù)據(jù)導(dǎo)出
mongoexport -d school -c class -o /opt/school.jason
//條件導(dǎo)出 -q '{"id":{"$eq":10}}'
mongoexport -d school -c class -q '{"id":{"$eq":10}}' -o /opt/school10.jason
//數(shù)據(jù)導(dǎo)入
mongoimport -d school -c classs --file /opt/school.jason
---------------------------------備份與恢復(fù)----------------------------------------------
創(chuàng)建好庫,插入好數(shù)據(jù)后
[root@localhost opt]# mongodump -d school -o /opt/
2018-09-12T10:59:57.635+0800 writing school.info to
2018-09-12T10:59:57.639+0800 done dumping school.info (100 documents)
[root@localhost opt]# cd /opt/
[root@localhost opt]# ls
rh school
[root@localhost school]# mongorestore -d myschool --dir=/opt/school
----------------------------------克隆集合--------------------------------------------
mongo --port 27018
db.runCommand({"cloneCollection":"kgc,info","from":"192.168.120.128:27017"})
show dbs;
----------------------------------創(chuàng)建管理用戶----------------------------------------
use admin //進(jìn)入用戶
db.createUser({"user":"root","pwd":"123","roles":["root"]}) //設(shè)置用戶密碼
db.auth("root","123") //驗(yàn)證用戶密碼
-----------------------------------進(jìn)程管理--------------------------------------------
db.currentOp() //查看進(jìn)程號
顯示
"opid": 337,
db.killOp(337) //結(jié)束進(jìn)程
文章標(biāo)題:MongoDB基本語句
文章分享:http://www.rwnh.cn/article20/jijpco.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供、App開發(fā)、電子商務(wù)、服務(wù)器托管、商城網(wǎng)站、企業(yè)網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)