标签: django postgresql group-by
当我写下面的内容时,group by与PostgreSQL无法正常工作 在这种情况下,它包含group by中的所有字段,例如group by test.id, test.name 我知道如果我使用值,我可以通过id挤压。但是,我想得到所有的领域 我怎么能这样做?
group by
group by test.id, test.name
tests = Test.objects.filter(is_active=True).annotate(cnt=Count('id')) tests.query.group_by = ['id']