在MongoD中使用数组值获取特定文档
limit()与一起使用toArray()。该toArray()方法返回一个数组,其中包含游标中的所有文档。让我们创建一个包含文档的集合-> db.demo482.insertOne({_id:1,"StudentInformation":[{"Name":"Chris","Age":21}]});
{ "acknowledged" : true, "insertedId" : 1 }
> db.demo482.insertOne({_id:2,"StudentInformation":[{"Name":"Bob","Age":23}]});
{ "acknowledged" : true, "insertedId" : 2 }
> db.demo482.insertOne({_id:3,"StudentInformation":[{"Name":"David","Age":20}]});
{ "acknowledged" : true, "insertedId" : 3 }在find()方法的帮助下显示集合中的所有文档-
> db.demo482.find();
这将产生以下输出-
{ "_id" : 1, "StudentInformation" : [ { "Name" : "Chris", "Age" : 21 } ] }
{ "_id" : 2, "StudentInformation" : [ { "Name" : "Bob", "Age" : 23 } ] }
{ "_id" : 3, "StudentInformation" : [ { "Name" : "David", "Age" : 20 } ] }以下是使用limit()-获取特定文档的查询-
> db.demo482.find({}).limit(2).toArray();这将产生以下输出-
[
{
"_id" : 1,
"StudentInformation" : [
{
"Name" : "Chris",
"Age" : 21
}
]
},
{
"_id" : 2,
"StudentInformation" : [
{
"Name" : "Bob",
"Age" : 23
}
]
}
]热门推荐
10 圣诞祝福语简短小学
11 祖国七十华诞简短祝福语
12 老师送的祝福语简短
13 生日祝福语大全女生简短
14 祝女性生日祝福语简短
15 牛年女神节祝福语简短
16 情人表白祝福语简短大气
17 老公开业祝福语简短
18 官宣新年祝福语简短