当前位置: 移动技术网 > IT编程>数据库>MongoDB > MongoDB快速入门笔记(三)之MongoDB插入文档操作

MongoDB快速入门笔记(三)之MongoDB插入文档操作

2017年12月08日  | 移动技术网IT编程  | 我要评论

mongodb 是一个基于分布式文件存储的数据库。由 c++ 语言编写。旨在为 web 应用提供可扩展的高性能数据存储解决方案。

mongodb 是一个介于关系数据库和非关系数据库之间的产品,是非关系数据库当中功能最丰富,最像关系数据库的。

本文给大家介绍mongodb的插入文档的方法,一起看看吧

1、文档的数据存储格式为bson,类似于json。mongodb插入数据时会检验数据中是否有“_id”,如果没有会自动生成。

shell操作有insert和save两种方法。当插入一条数据有“_id”值,并且现在集合中已经有相同的值,使用insert插入时插入不进去,使用save时,会更新数据。

> 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、批量插入,网上的文档都说不能mongodb不支持批量插入,现在试过可以,应该是目前的版本支持批量插入了。

> 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、循环插入:

> 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快速入门笔记(三)之mongodb插入文档操作的相关知识,希望对大家有所帮助,更多精彩内容,敬请关注移动技术网网站!

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网