Django注释和values():“group by”中的额外字段导致意想不到的结果
我一定错过了一些明显的东西,因为这个简单要求的行为并不符合预期。这是我的模型类:
class Encounter(models.Model):
activity_type = models.CharField(max_length=2,
choices=(('ip','ip'), ('op','op'), ('ae', 'ae')))
cost = models.DecimalField(max_digits=8, decimal_places=2)
我想找到每种活动类型的总成本。我的查询是:
>>> Encounter.objects.values('activity_type').annotate(Sum('cost'))
哪个产生:
>>> [{'cost__sum': Decimal("140.00"), 'activity_type': u'ip'},
{'cost__sum': Decimal("100.00"), 'activity_type': u'op'},
{'cost__sum': Decimal("0.00"), 'activity_type': u'ip'}]
在结果集中有 2 个“ip”类型的遭遇。这是因为它不是仅按 activity_type
分组,而是按 activity_type AND cost 分组,这不会给出预期结果。为此生成的 SQL 查询是:
SELECT "encounter_encounter"."activity_type",
SUM("encounter_encounter"."total_cost") AS "total_cost__sum"
FROM "encounter_encounter"
GROUP BY "encounter_encounter"."activity_type",
"encounter_encounter"."total_cost" <<<< THIS MESSES THINGS
ORDER BY "encounter_encounter"."total_cost" DESC
如何使该查询按预期工作(并且如 docs(如果我没有理解错的话)并使其仅在 activity_type
上进行分组?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如 @Skirmantas 正确指出的那样,问题与
order_by
有关。尽管没有在查询中明确说明,但模型的 Meta 类中的默认排序会添加到查询中,然后将其添加到 group by 子句中,因为 SQL 需要这样做。解决方案是删除默认排序或添加空的
order_by()
来重置排序:As @Skirmantas correctly pointed, the problem was related to
order_by
. Although it is not explicitly stated in the query, the default ordering in the model's Meta class is added to the query, which is then added to the group by clause because SQL requires so.The solution is either to remove the default ordering or add an empty
order_by()
to reset ordering: