Django:从聚合查询中获取其他字段的值

发布于 2024-11-03 17:05:23 字数 163 浏览 3 评论 0原文

es = Employee.objects.filter(a few filters).aggregate(Max('Age'))

该查询将为我提供最年长的员工,因此我还想知道与该行关联的一些其他信息,例如 id。

我怎样才能做到这一点?谢谢。

es = Employee.objects.filter(a few filters).aggregate(Max('Age'))

That query is going to give me the oldest employee, so I also want to know some other information associated with that row, for example, the id.

How can I accomplish that? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

您不需要聚合,您只需按年龄降序排序您的查询集

 Employee.objects.filter(a few filters).order_by(['-Age'])[0]

将为您提供最旧的

或者如果您有几个旧项目

 age = None
 for x in Employee.objects.filter(a few filters).order_by(['-Age']):
    if age and age != x.Age:
       break
    age = x.Age 

You do not need aggregate you only have to order by descending Ages your query set

 Employee.objects.filter(a few filters).order_by(['-Age'])[0]

Will give you the oldest

Or if you have several old item

 age = None
 for x in Employee.objects.filter(a few filters).order_by(['-Age']):
    if age and age != x.Age:
       break
    age = x.Age 
原谅我要高飞 2024-11-10 17:05:23

使用 annotate() 而不是 aggregate()

Use annotate() instead of aggregate().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文