如何从 MongoDB 集合中读取特定的键值对?
您可以使用dot(.)表示法从MongoDB集合中读取特定的键值对。让我们首先创建一个包含文档的集合-
> db.readSpecificKeyValueDemo.insertOne(
... {
... "_id": 100,
... "StudentDetails":
... {
... "StudentFirstName" : "David",
... "StudentLastName" :"Miller",
... "StudentAge":23,
... "StudentCountryName":"US"
... }
... }
... );
{ "acknowledged" : true, "insertedId" : 100 }以下是在find()方法的帮助下显示集合中所有文档的查询-
> db.readSpecificKeyValueDemo.find().pretty();
这将产生以下输出-
{
"_id" : 100,
"StudentDetails" : {
"StudentFirstName" : "David",
"StudentLastName" : "Miller",
"StudentAge" : 23,
"StudentCountryName" : "US"
}
}以下是从MongoDB集合中读取特定键值对的查询-
> db.readSpecificKeyValueDemo.find({},{"StudentDetails.StudentCountryName":1}).pretty();这将产生以下输出-
{ "_id" : 100, "StudentDetails" : { "StudentCountryName" : "US" } }热门推荐
10 读书祝福语女生短句简短
11 感谢同事新婚祝福语简短
12 感谢教官文案祝福语简短
13 员工聚会蛋糕祝福语简短
14 元宵发客户祝福语简短
15 给团队信心祝福语简短
16 医美的祝福语大全简短
17 异国姻缘的祝福语简短
18 兄妹拍照祝福语简短的话