diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index dbca6b58060..1344c6744b6 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -2487,6 +2487,12 @@ aggregate functions, see aggregation on date/time fields in SQLite will raise ``NotImplementedError``. +.. admonition:: Note + + Aggregation functions will return ``None`` when used with an empty + ``QuerySet``. For example, the ``Count`` aggregation function will return + ``None`` instead of ``0`` if the ``QuerySet`` contains no entries. + Avg ~~~