我想通过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保持一致。
谢谢
尝试这个:
Rating.objects.filter(attribute__in=attributes) \ .values('location') \ .annotate(score = Sum('score')) \ .order_by('-score')