MongoDB查询数组中的部分对象
首先让我们创建一个包含文档的集合-
> db.queryForPartialObjectDemo.insertOne({_id:new ObjectId(), "StudentDetails": [{"StudentId":1, "StudentName":"Chris"}]});
{
"acknowledged" : true,
"insertedId" : ObjectId("5cdfcf55bf3115999ed51206")
}
> db.queryForPartialObjectDemo.insertOne({_id:new ObjectId(), "StudentDetails": [{"StudentId":2, "StudentName":"David"}]});
{
"acknowledged" : true,
"insertedId" : ObjectId("5cdfcf55bf3115999ed51207")
}以下是在find()方法的帮助下显示集合中所有文档的查询-
> db.queryForPartialObjectDemo.find().pretty();
这将产生以下输出-
{
"_id" : ObjectId("5cdfcf55bf3115999ed51206"),
"StudentDetails" : [
{
"StudentId" : 1,
"StudentName" : "Chris"
}
]
}
{
"_id" : ObjectId("5cdfcf55bf3115999ed51207"),
"StudentDetails" : [
{
"StudentId" : 2,
"StudentName" : "David"
}
]
}第一种方法
以下是使用MongoDB查询数组中的部分对象-
> db.queryForPartialObjectDemo.find({StudentDetails: {StudentId: 1, "StudentName" : "Chris"}});这将产生以下输出-
{ "_id" : ObjectId("5cdfcf55bf3115999ed51206"), "StudentDetails" : [ { "StudentId" : 1, "StudentName" : "Chris" } ] }第二种方法
以下是对带有点符号的数组中的部分对象的查询-
> db.queryForPartialObjectDemo.find({"StudentDetails.StudentName":"Chris"});这将产生以下输出-
{ "_id" : ObjectId("5cdfcf55bf3115999ed51206"), "StudentDetails" : [ { "StudentId" : 1, "StudentName" : "Chris" } ] }热门推荐
10 病人祝福语老师寄语简短
11 新娘生孩子祝福语简短
12 婆婆66岁祝福语简短
13 今天孩子高考祝福语简短
14 送彩票生日祝福语简短
15 分别祝福语简短情话英文
16 画室揭牌仪式祝福语简短
17 女友妈妈生日祝福语简短
18 离别赠言离职祝福语简短