在 MongoDB 中处理子文档
要处理子文档,在 MongoDB 中使用点 (.) 记法。我们先使用文档创建一个集合 -
> db.demo378.insertOne(
... {
... Name: 'Chris',
... details:[
... {id:101,Score:56},
... {id:102,Score:78}
... ]
... }
... );
{
"acknowledged" : true,
"insertedId" : ObjectId("5e5a758a2ae06a1609a00b0f")
}使用 find() 方法显示集合中的所有文档 -
> db.demo378.find();
这将生成以下输出 -
{
"_id" : ObjectId("5e5a758a2ae06a1609a00b0f"), "Name" : "Chris", "details" : [
{ "id" : 101, "Score" : 56 }, { "id" : 102, "Score" : 78 }
]
}以下是用于处理子文档的查询 -
> db.demo378.update({Name: "Chris", "details.id":102 }, { $inc: { "details.$.Score": -8 } });
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })使用 find() 方法显示集合中的所有文档 -
> db.demo378.find();
这将生成以下输出 -
{
"_id" : ObjectId("5e5a758a2ae06a1609a00b0f"), "Name" : "Chris", "details" : [
{ "id" : 101, "Score" : 56 }, { "id" : 102, "Score" : 70 }
]
}
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP