1
0
mirror of https://github.com/django/django.git synced 2025-04-04 13:36:42 +00:00

Corrected aggregation example in docs/ref/models/querysets.txt.

This commit is contained in:
Clifford Gama 2025-03-06 23:29:21 +02:00 committed by Sarah Boyce
parent efe3ca09e0
commit 3235e76eb5

View File

@ -2804,16 +2804,16 @@ number of authors that have contributed blog entries:
.. code-block:: pycon
>>> from django.db.models import Count
>>> Blog.objects.aggregate(Count("entry"))
{'entry__count': 16}
>>> Blog.objects.aggregate(Count("entry__authors"))
{'entry__authors__count': 16}
By using a keyword argument to specify the aggregate function, you can
control the name of the aggregation value that is returned:
.. code-block:: pycon
>>> Blog.objects.aggregate(number_of_entries=Count("entry"))
{'number_of_entries': 16}
>>> Blog.objects.aggregate(number_of_authors=Count("entry__authors"))
{'number_of_authors': 16}
For an in-depth discussion of aggregation, see :doc:`the topic guide on
Aggregation </topics/db/aggregation>`.