gpt4 book ai didi

python - Django ORM : How to query for the latest row based on a another attribute

转载 作者:行者123 更新时间:2023-11-29 13:54:46 25 4
gpt4 key购买 nike

我有一张 table :

product_id  |  sales_rank  |  updated_on
1 | 572 | 2015-12-17 15:19:41
2 | 1000 | 2015-12-17 15:19:42
1 | 500 | 2015-12-18 15:19:41
2 | 1659 | 2015-12-18 15:19:42

我有兴趣在 Django ORM 中仅从该表中选择最后两行进行查询。

我想要所有唯一产品 ID 的最新更新行。我怎样才能做到这一点?

这是我现在使用的肮脏(且昂贵)的方式:

sorted(Product.objects.distinct("product_id"), key=operator.attrgetter('sales_rank'))

最佳答案

请尝试:

from django.db.models import Max
Product.objects.values('product_id').annotate(latest=Max('updated_on'))

关于python - Django ORM : How to query for the latest row based on a another attribute,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34364141/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com