我正在尝试在Django查询集中创建一个注释。注释是基于条件的反向外键计数。我遇到的问题是,当我对一个带有条件的反向外键进行计数时,我会获得正确的数据,但是当我进行两个注释时,每个反向外键都需要一个注释。
这是带有一个反向外键的Count注释的查询集:
ExamResponse.objects.filter(
course_class__course=course,
exam__exam_type=Exam.PRACTICE,
user__is_demo=False,
ended__isnull=False,
id=125752
).order_by(
'user_id',
'started'
).annotate(
total_ecq_count=Sum(
Case(
When(
choice_questions__response_time__gte=ENGAGEMENT_THRESHOLD,
choice_questions__id__isnull=False,
then=1
),
default=0,
output_field=IntegerField()
),
distinct=True
),
).values('total_ecq_count')
结果(正确结果):
<QuerySet [{'total_ecq_count': 1}]>
带有两个Count批注的查询
ExamResponse.objects.filter(
course_class__course=course,
exam__exam_type=Exam.PRACTICE,
user__is_demo=False,
ended__isnull=False,
id=125752
).order_by(
'user_id',
'started'
).annotate(
total_ecq_count=Sum(
Case(
When(
choice_questions__response_time__gte=ENGAGEMENT_THRESHOLD,
choice_questions__id__isnull=False,
then=1
),
default=0,
output_field=IntegerField()
),
distinct=True
),
total_etq_count=Sum(
Case(
When(
text_questions__response_time__gte=ENGAGEMENT_THRESHOLD,
text_questions__id__isnull=False,
then=1
),
default=0,
output_field=IntegerField()
),
distinct=True
),
).values('total_ecq_count', 'total_etq_count')
结果:(total_ecq_count从1减少到3 !!!)
<QuerySet [{'total_ecq_count': 3, 'total_etq_count': 4}]>
答案 0 :(得分:0)
我刚刚找到了这篇文章,显然,这是一个已知的错误,两个不同外键的两个注释会创建重复计数。 https://code.djangoproject.com/ticket/25861