Django, division between two annotate result won't calculate correctly

前端 未结 2 636
情话喂你
情话喂你 2021-02-13 23:30

I\'m trying to get a division between two annotate results in queryset. Impression is much larger than click, so I should get tenth decimal.

def get_queryset(se         


        
2条回答
  •  孤街浪徒
    2021-02-13 23:44

    With newer versions of Django, you can use the new Func object to cast the values to FloatFields or DecimalFields before the Sum.

    from django.db.models.functions import Cast
    from django.db.models import FloatField
    ctr_monthly= Cast(Sum('click'), FloatField())/Cast(Sum('impression')), FloatField())
    

    Even with an older version of Django, you might be able to just specify the output_field on the Sum before annotating ctr_monthly like so:

    from django.db.models import F
    def get_queryset(self):
        return googleData.objects.filter(
            account=self.account_name
        ).values('date').annotate(
            click_sum=Sum(
                'click',
                output_field=FloatField()
            ),
            impression_sum=Sum(
                'impression',
                output_field=FloatField()
            ),
            converted_click_sum=Sum('converted_click'),
            conversion_value_sum=Sum('conversion_value'),
            cost_sum=Sum('cost')
        ).annotate(
            ctr_monthly=F('click_sum') / F('impression_sum')
        ).order_by('-date')
    

提交回复
热议问题