投影数组以获取来自 MongoDB 文档的第一个数组元素
如果您想要数组中的第一个元素,您可以将 $slice 与 $gte 一起使用。让我们创建一个包含文档的集合 −
> db.demo640.insertOne({Name:"John","Scores":[80,90,75]}); { "acknowledged" : true, "insertedId" : ObjectId("5e9c2eb86c954c74be91e6e0") } > db.demo640.insertOne({Name:"Chris","Scores":[85,70,89]}); { "acknowledged" : true, "insertedId" : ObjectId("5e9c2ece6c954c74be91e6e1") }
使用 find() 方法显示集合中的所有文档 −
> db.demo640.find();
这将产生以下输出 −
{ "_id" : ObjectId("5e9c2eb86c954c74be91e6e0"), "Name" : "John", "Scores" : [ 80, 90, 75 ] } { "_id" : ObjectId("5e9c2ece6c954c74be91e6e1"), "Name" : "Chris", "Scores" : [ 85, 70, 89 ] }
以下是使用 $slice 投影数组的查询 −
> db.demo640.find({Scores:{$gte:85}},{ "Scores": {$slice : 1}});
这将产生以下输出 −
{ "_id" : ObjectId("5e9c2eb86c954c74be91e6e0"), "Name" : "John", "Scores" : [ 80 ] } { "_id" : ObjectId("5e9c2ece6c954c74be91e6e1"), "Name" : "Chris", "Scores" : [ 85 ] }
广告