简单单个文档插入用insert方法: > db.post.insert({"bar":"baz"}); WriteResult(
简单单个文档插入用insert方法:
> db.post.insert({"bar":"baz"});
WriteResult({ "nInserted" : 1 })
批量插入,用insert方法(参数要是一个文档数组):
> db.post.insert([{"_id":0},{"_id":1},{"_id":2}]);
BulkWriteResult({
"writeErrors" : [ ],
"writeConcernErrors" : [ ],
"nInserted" : 3,
"nUpserted" : 0,
"nMatched" : 0,
"nModified" : 0,
"nRemoved" : 0,
"upserted" : [ ]
})
>
查看插入的结果:
> db.post.find();
{ "_id" : ObjectId("54a51cfd7f46906f81b7adcd"), "bar" : "baz" }
{ "_id" : 0 }
{ "_id" : 1 }
{ "_id" : 2 }
>
附注:batchInsert方法在新版的mongoDB中已经不可用;
--结束END--
本文标题: 【MongoDB学习笔记6】深入MongoDB的创建/插入(insert)
本文链接: https://lsjlt.com/news/36811.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0