如何使用Django进行分组和汇总


82

我想通过ORM进行一个非常简单的查询,但无法弄清楚。

我有三种模式:

位置(位置),属性(位置可能具有的属性)和评分(也包含得分字段的M2M“直通”模型)

我想选择一些重要的属性,并能够通过这些属性对我的位置进行排名-即,所有选定属性的总分更高=更好。

我可以使用以下SQL来获取所需的内容:

select location_id, sum(score) 
    from locations_rating 
    where attribute_id in (1,2,3) 
    group by location_id order by sum desc;

哪个返回

 location_id | sum 
-------------+-----
          21 |  12
           3 |  11

我可以通过ORM得到的最接近的是:

Rating.objects.filter(
    attribute__in=attributes).annotate(
    acount=Count('location')).aggregate(Sum('score'))

哪个返回

{'score__sum': 23}

即所有的总和,而不是按位置分组。

可以解决吗?我可以手动执行SQL,但宁愿通过ORM保持一致。

谢谢



Answers:


135

试试这个:

Rating.objects.filter(attribute__in=attributes) \
    .values('location') \
    .annotate(score = Sum('score')) \
    .order_by('-score')

3
嗯-注释不汇总-为什么呢?
盖·鲍登

51
aggregate用于完整的结果集,annotate用于单个(分组)行。
Bouke

有谁知道如何'dict' object has no attribute '_meta'使用这种QuerySet解决方法?
maciek '16

嗨,@ Aamir,我有一个类似的问题,你可以看看吗?link-here
Ermir Beqiraj '18

返回类似[{"location": 53, "score": 100}, {"location": 54, "score": 104}]
Irvan,2018年

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.