gpt4 book ai didi

python - Django 按多个字段分组

转载 作者:太空宇宙 更新时间:2023-11-04 04:29:59 24 4
gpt4 key购买 nike

我想将此 SQL 请求转换为 Django View :

SELECT color, shape, eyes, count(1) FROM animals WHERE master_id = 1 GROUP BY color, shape, eyes 

为了做到这一点,我尝试过:

animals = Animals.objects.filter(id=1).values('color', 'shape', 'eyes').annotate(ct=Count('color'), dg=Count('shape'), br=Count('eyes'))

然后在结果上循环以找到每个(不是很优化)的计数,但结果并不好。这是我想要的分组方式,但不关心 id。

编辑:

<QuerySet [
{ 'color': brown, 'shape': blabla, 'eyes': toto, 'ct': 2 },
{ 'color': black, 'shape': blabla, 'eyes': toto, 'ct': 1 },
{ 'color': yellow, 'shape': xxxxx, 'eyes': ok, 'ct': 4 }
]>

第二次编辑:

如果我尝试这样做:

Animals.objects.filter(
master_id=1
).values('color', 'shape', 'eyes').annotate(
ct=Count('id')
).order_by('color', 'shape', 'eyes')

我有这个结果没有计数:

<QuerySet [
{ 'color': brown, 'shape': blabla, 'eyes': toto},
{ 'color': black, 'shape': blabla, 'eyes': toto},
{ 'color': yellow, 'shape': xxxxx, 'eyes': ok }
]>

最后编辑:

Animal 表没有 count 或 ct 列,但我的结果中需要它

最佳答案

一个完整的等效查询是:

Animals.objects.filter(
master_id=1
).values('color', 'shape', 'eyes').annotate(
ct=Count('id')
).order_by('color', 'shape', 'eyes')

这将产生一个包含字典的 QuerySet,例如:

<QuerySet [
{ 'color': 0, 'shape': 2, 'eyes': 1, 'ct': 1 },
{ 'color': 0, 'shape': 3, 'eyes': 3, 'ct': 4 },
{ 'color': 1, 'shape': 0, 'eyes': 0, 'ct': 2 },
{ 'color': 2, 'shape': 2, 'eyes': 1, 'ct': 5 },
]>

例如:

>>> Animals.objects.create(color='foo', shape='bar', eyes='brown', master_id=1)
<Animal: Animal object (2)>
>>> Animals.objects.create(color='foo', shape='bar', eyes='brown', master_id=1)
<Animal: Animal object (3)>
>>> Animals.objects.create(color='foo', shape='bar', eyes='blue', master_id=1)
<Animal: Animal object (4)>
>>> Animals.objects.create(color='foo', shape='rectangle', eyes='brown', master_id=1)
<Animal: Animal object (5)>
>>> Animals.objects.create(color='red', shape='rectangle', eyes='brown', master_id=1)
<Animal: Animal object (6)>
>>> Animals.objects.filter(
... master_id=1
... ).values('color', 'shape', 'eyes').annotate(
... ct=Count('id')
... ).order_by('color', 'shape', 'eyes')
<QuerySet [{'color': 'foo', 'shape': 'bar', 'eyes': 'blue', 'ct': 1}, {'color': 'foo', 'shape': 'bar', 'eyes': 'brown', 'ct': 2}, {'color': 'foo', 'shape': 'rectangle', 'eyes': 'brown', 'ct': 1}, {'color': 'red', 'shape': 'rectangle', 'eyes': 'brown', 'ct': 1}]>

关于python - Django 按多个字段分组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52850355/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com