Dust8 的博客

读书百遍其义自见

0%

django与coalesce

django 使用统计 annotateaggregate 时由于没有数据导致统计是 null , 而不是 0.
这对返回结果产生很大影响, 可以使用 Coalesce 方法来设置默认值.

1
2
3
4
5
6
7
8
9
10
11
from django.db.models import Sum, Value as V
from django.db.models.functions import Coalesce

>>> # Prevent an aggregate Sum() from returning None
>>> aggregated = Author.objects.aggregate(
... combined_age=Coalesce(Sum('age'), V(0)),
... combined_age_default=Sum('age'))
>>> print(aggregated['combined_age'])
0
>>> print(aggregated['combined_age_default'])
None

参考链接