如何使用 Django 按 AND 聚合分组

我有一个相当简单的查询,我想通过 ORM,但无法找出. 。

我有三个模型:

Location (一个地方)、 Attribute (一个地方可能有的属性)和 Rating (一个 M2M‘ through’模型,它也包含一个评分字段)

我想选择一些重要的属性,并且能够根据这些属性对我的位置进行排名——也就是说,所有选择的属性的总分越高 = 越好。

我可以使用以下 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 来保持一致性。

谢谢

76156 次浏览

Can you try this.

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

Try this:

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