当前位置:  开发笔记 > 编程语言 > 正文

我可以在MongoDB聚合查询中获得第一个文档(不是字段)吗?

如何解决《我可以在MongoDB聚合查询中获得第一个文档(不是字段)吗?》经验,为你挑选了1个好方法。

在聚合框架示例中,有第一个和最后一个示例:

db.zipcodes.aggregate( { $group:
                         { _id: { state: "$state", city: "$city" },
                           pop: { $sum: "$pop" } } },
                       { $sort: { pop: 1 } },
                       { $group:
                         { _id : "$_id.state",
                           biggestCity:  { $last: "$_id.city" },
                           biggestPop:   { $last: "$pop" },
                           smallestCity: { $first: "$_id.city" },
                           smallestPop:  { $first: "$pop" } } }

我可以获得完整的zipcodes文档$first吗?

编辑:

为了澄清,我在我的快递应用程序中使用coffeescript执行以下操作,看起来很愚蠢:

@aggregate(
  {
    $group :  
      _id : "$category" 
      cnt : { $sum : 1 }
      id: {$first: "$_id"}
      name: {$first: "$name"}
      description: {$first: "$description"}
      region: {$first: "$region"}
      startedAt: {$first: "$startedAt"}
      titleImage: {$first: "$titleImage"}
      tags: {$first: "$tags"}
  },
  {$sort :{"createdAt" : -1}}

字段(id,name,...标签)都是文档架构的字段.我只是想知道,有没有办法单独做到这一点$first.



1> 小智..:

现在可以在2.6中使用,因为您可以使用$$ ROOT访问正在处理的文档.这样的事情应该有效:

@aggregate(
{
    $group :  
        _id : "$category" 
        cnt : { $sum : 1 }
        first: {$first : "$$ROOT"}
{$sort :{"createdAt" : -1}}
)

推荐阅读
落单鸟人
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有