MongoDB的shell操作數(shù)據(jù),用到create、read、update、delete操作。
乾安ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書(shū)未來(lái)市場(chǎng)廣闊!成為創(chuàng)新互聯(lián)的ssl證書(shū)銷(xiāo)售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話(huà)聯(lián)系或者加微信:13518219792(備注:SSL證書(shū)合作)期待與您的合作!
1、創(chuàng)建
insert函數(shù)用于創(chuàng)建一個(gè)文檔到集合里面。
例,創(chuàng)建局部變量post,內(nèi)容是代表文檔的JavaScript對(duì)象,里面會(huì)有title、content和date幾個(gè)鍵。
> post = {"title":"My Blog Post",
... "content":"Here's my blog post",
... "date":new Date()}
{
"title" : "My Blog Post",
"content" : "Here's my blog post",
"date" : ISODate("2015-02-02T05:04:55.861Z")
}
> db
test
使用insert方法保存到集合blog中,注意,這時(shí)blog并不存在。
> db.blog.insert(post)
WriteResult({ "nInserted" : 1 })
2、讀取
find()函數(shù)會(huì)讀取集合中的所有文檔:
> db.blog.find();
{ "_id" : ObjectId("54cf05c00eb7b5f5718da826"), "title" : "My Blog Post", "conte
nt" : "Here's my blog post", "date" : ISODate("2015-02-02T05:04:55.861Z") }
若是只想查看一個(gè)文檔,使用findOne()
> db.blog.findone();
2015-02-02T13:10:15.365+0800 TypeError: Property 'findone' of object test.blog i
s not a function
> db.blog.findOne();
{
"_id" : ObjectId("54cf05c00eb7b5f5718da826"),
"title" : "My Blog Post",
"content" : "Here's my blog post",
"date" : ISODate("2015-02-02T05:04:55.861Z")
}
3、更新
3.1
update接受至少兩個(gè)參數(shù):一是更新文檔的限定條件,二是新的文檔。假設(shè)決定給先前寫(xiě)的文章增加評(píng)論內(nèi)容,則需要增加一個(gè)新的鍵,對(duì)應(yīng)的值是存放評(píng)論的數(shù)組:
修改變量post,增加"comment"鍵:
> post.comments = [];
[ ]
執(zhí)行update
> db.blog.update({"title":"My Blog Post"},post)
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.blog.find();
{ "_id" : ObjectId("54cf05c00eb7b5f5718da826"), "title" : "My Blog Post", "conte
nt" : "Here's my blog post", "date" : ISODate("2015-02-02T05:04:55.861Z"), "comm
ents" : [ ] }
> db.blog.findOne();
{
"_id" : ObjectId("54cf05c00eb7b5f5718da826"),
"title" : "My Blog Post",
"content" : "Here's my blog post",
"date" : ISODate("2015-02-02T05:04:55.861Z"),
"comments" : [ ]
}
3.2使用修改器("$inc"修改器)
通常文檔只會(huì)有一部分要更新,利用原子的更新修改器,可以使得這種部分更新極為高效。更新修改器是種特殊的鍵,用來(lái)指定復(fù)雜的更新操作,比如調(diào)整、增加或者刪除鍵,還可能是操作數(shù)組或者內(nèi)嵌文檔。
再看更新一例:
> db.people.find();
{ "_id" : ObjectId("54d08f7f0eb7b5f5718da82a"), "name" : "joe", "age" : 65 }
{ "_id" : ObjectId("54d08fb70eb7b5f5718da82b"), "name" : "joe", "age" : 20 }
{ "_id" : ObjectId("54d08fbd0eb7b5f5718da82c"), "name" : "joe", "age" : 49 }
> db.people.update({"age":20},{"$inc":{"age":1}});
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.people.find();
{ "_id" : ObjectId("54d08a1d0eb7b5f5718da828"), "name" : "joe", "friends" : 32,
"enemies" : 2 }
{ "_id" : ObjectId("54d08f7f0eb7b5f5718da82a"), "name" : "joe", "age" : 65 }
{ "_id" : ObjectId("54d08fb70eb7b5f5718da82b"), "name" : "joe", "age" : 21 }
{ "_id" : ObjectId("54d08fbd0eb7b5f5718da82c"), "name" : "joe", "age" : 49 }
>
4、刪除
remove用來(lái)從數(shù)據(jù)庫(kù)中永久性地刪除文檔,在不適用參數(shù)進(jìn)行調(diào)用的情況下,它會(huì)刪除一個(gè)集合內(nèi)的所有文檔,也可以接受一個(gè)文檔以指定限制條件:
> db.blog.remove({"title":"My Blog Post"});
WriteResult({ "nRemoved" : 1 })
> db.blog.find();
>
刪除是永久性的,不能撤銷(xiāo),也不能恢復(fù)。
刪除文檔通常都很快,但是要清除整個(gè)集合,直接刪除集合(然后重建索引)會(huì)更快。