我有一个相当简单的查询我想通过ORM,但不能算出来..
原文链接:https://www.f2er.com/javaschema/282705.html我有三个型号:
位置(地点),属性(地点可能具有的属性)和评级(也包含得分字段的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来保持一致。
谢谢