主頁(yè) > 知識(shí)庫(kù) > MongoDB快速入門(mén)筆記(三)之MongoDB插入文檔操作

MongoDB快速入門(mén)筆記(三)之MongoDB插入文檔操作

熱門(mén)標(biāo)簽:沈陽(yáng)營(yíng)銷(xiāo)電銷(xiāo)機(jī)器人招商 徐州ai電銷(xiāo)機(jī)器人原理 福州電銷(xiāo)機(jī)器人源代碼 高德地圖標(biāo)注商戶位置 智能電銷(xiāo)機(jī)器人銷(xiāo)售話術(shù) 企業(yè)智能外呼系統(tǒng)價(jià)格多少 機(jī)器人外呼系統(tǒng)軟件存在問(wèn)題 南京400電話怎樣辦理 兗州電話外呼營(yíng)銷(xiāo)系統(tǒng)

MongoDB 是一個(gè)基于分布式文件存儲(chǔ)的數(shù)據(jù)庫(kù)。由 C++ 語(yǔ)言編寫(xiě)。旨在為 WEB 應(yīng)用提供可擴(kuò)展的高性能數(shù)據(jù)存儲(chǔ)解決方案。

MongoDB 是一個(gè)介于關(guān)系數(shù)據(jù)庫(kù)和非關(guān)系數(shù)據(jù)庫(kù)之間的產(chǎn)品,是非關(guān)系數(shù)據(jù)庫(kù)當(dāng)中功能最豐富,最像關(guān)系數(shù)據(jù)庫(kù)的。

本文給大家介紹MongoDB的插入文檔的方法,一起看看吧

1、文檔的數(shù)據(jù)存儲(chǔ)格式為BSON,類(lèi)似于JSON。MongoDB插入數(shù)據(jù)時(shí)會(huì)檢驗(yàn)數(shù)據(jù)中是否有“_id”,如果沒(méi)有會(huì)自動(dòng)生成。

shell操作有insert和save兩種方法。當(dāng)插入一條數(shù)據(jù)有“_id”值,并且現(xiàn)在集合中已經(jīng)有相同的值,使用insert插入時(shí)插入不進(jìn)去,使用save時(shí),會(huì)更新數(shù)據(jù)。

> db.student.drop()
true
> db.student.insert({"_id": 1, "name":"zhangsan", "age": 28})
WriteResult({ "nInserted" : 1 })
> db.student.find()
{ "_id" : 1, "name" : "zhangsan", "age" : 28 }
> db.student.insert({"_id": 1, "name":"zhangsan", "age": 27})
WriteResult({
"nInserted" : 0,
"writeError" : {
"code" : 11000,
"errmsg" : "E11000 duplicate key error collection: zyhdb.student index: _id_ dup key: { : 1.0 }"
}
})
> db.student.find()
{ "_id" : 1, "name" : "zhangsan", "age" : 28 }
> db.student.save({"_id": 1, "name":"zhangsan", "age": 27})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.student.find()
{ "_id" : 1, "name" : "zhangsan", "age" : 27 } 

2、批量插入,網(wǎng)上的文檔都說(shuō)不能MongoDB不支持批量插入,現(xiàn)在試過(guò)可以,應(yīng)該是目前的版本支持批量插入了。

> db.student.insert([{"_id": 2, "name": "lisi"},{"_id": 3, "name": "wangwu"}, {"_id": 4, "name": "zhaoliu", "age": 28}])
BulkWriteResult({
"writeErrors" : [ ],
"writeConcernErrors" : [ ],
"nInserted" : 3,
"nUpserted" : 0,
"nMatched" : 0,
"nModified" : 0,
"nRemoved" : 0,
"upserted" : [ ]
})
> db.student.find()
{ "_id" : 1, "name" : "zhangsan", "age" : 27 }
{ "_id" : , "name" : "lisi" }
{ "_id" : , "name" : "wangwu" }
{ "_id" : 4, "name" : "zhaoliu", "age" : 28 } 

3、循環(huán)插入:

> for(var i=; i; i++){db.fortest.insert({num: i})}
WriteResult({ "nInserted" : })
> db.fortest.find()
{ "_id" : ObjectId("eceadaeabab"), "num" : 0}
{ "_id" : ObjectId("eceadaeabab"), "num" : 1}
{ "_id" : ObjectId("eceadaeabab"), "num" : 2}
{ "_id" : ObjectId("eceadaeabab"), "num" : 3}
{ "_id" : ObjectId("eceadaeabab"), "num" : 4}
{ "_id" : ObjectId("eceadaeababa"), "num" : 5}
{ "_id" : ObjectId("eceadaeababb"), "num" : 6}
{ "_id" : ObjectId("eceadaeababc"), "num" : 7}
{ "_id" : ObjectId("eceadaeababd"), "num" : 8}
{ "_id" : ObjectId("eceadaeababe"), "num" : 9}

以上所述是小編給大家介紹的MongoDB快速入門(mén)筆記(三)之MongoDB插入文檔操作的相關(guān)知識(shí),希望對(duì)大家有所幫助,更多精彩內(nèi)容,敬請(qǐng)關(guān)注腳本之家網(wǎng)站!

您可能感興趣的文章:
  • PHP庫(kù) 查詢(xún)Mongodb中的文檔ID的方法
  • MongoDB中對(duì)文檔的增刪查改基本操作方法總結(jié)
  • MongoDB快速入門(mén)筆記(四)之MongoDB查詢(xún)文檔操作實(shí)例代碼
  • MongoDB快速入門(mén)筆記(六)之MongoDB的文檔修改操作
  • MongoDB快速入門(mén)筆記(六)之MongoDB刪除文檔操作
  • MongoDB修改、刪除文檔的域?qū)傩詫?shí)例
  • MongoDB學(xué)習(xí)筆記(四) 用MongoDB的文檔結(jié)構(gòu)描述數(shù)據(jù)關(guān)系
  • MongoDB插入、更新、刪除文檔實(shí)現(xiàn)代碼

標(biāo)簽:大理 昭通 鶴崗 吉安 丹東 邯鄲 景德鎮(zhèn) 本溪

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《MongoDB快速入門(mén)筆記(三)之MongoDB插入文檔操作》,本文關(guān)鍵詞  MongoDB,快速,入門(mén),筆記,三,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《MongoDB快速入門(mén)筆記(三)之MongoDB插入文檔操作》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于MongoDB快速入門(mén)筆記(三)之MongoDB插入文檔操作的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章