我想通过 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 来保持一致。
谢谢