我有以下型号。
class Compared(models.Model):
store = models.ForeignKey(Store)
product = models.ForeignKey(Product)
class Meta():
unique_together = ('store', 'product')
其中包含以下类型的数据。
(store, product)
(1, 1)
(2, 1)
(3, 1)
(2, 2)
(2, 3)
(3, 3)
(3, 2)
我希望按产品分组并获取该组中的所有商店。
(product, (stores))
(1, (1, 2, 3))
(2, (2, 3))
(3, (2, 3))
是否有内置查询功能来实现,或者我必须手动制作它们?
答案 0 :(得分:0)
您可以使用itertools
进行分组:
from itertools import group_by
cs = Compared.objects.all().order_by( 'product__pk' ) )
for p, l in groupby( l , key = lambda x: x.store.pk ):
print p.pk #the produt name
print [ s.pk for s in l ] #stores pks
print ( p.pk, tuple( s.pk for s in l ) )
注意:语法未经过测试。
注意:这在“内存中”分组但在数据库中。
注意:排序依据很重要。