aggregation.txt 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550
  1. ===========
  2. Aggregation
  3. ===========
  4. .. currentmodule:: django.db.models
  5. The topic guide on :doc:`Django's database-abstraction API </topics/db/queries>`
  6. described the way that you can use Django queries that create,
  7. retrieve, update and delete individual objects. However, sometimes you will
  8. need to retrieve values that are derived by summarizing or *aggregating* a
  9. collection of objects. This topic guide describes the ways that aggregate values
  10. can be generated and returned using Django queries.
  11. Throughout this guide, we'll refer to the following models. These models are
  12. used to track the inventory for a series of online bookstores:
  13. .. _queryset-model-example:
  14. .. code-block:: python
  15. from django.db import models
  16. class Author(models.Model):
  17. name = models.CharField(max_length=100)
  18. age = models.IntegerField()
  19. class Publisher(models.Model):
  20. name = models.CharField(max_length=300)
  21. num_awards = models.IntegerField()
  22. class Book(models.Model):
  23. name = models.CharField(max_length=300)
  24. pages = models.IntegerField()
  25. price = models.DecimalField(max_digits=10, decimal_places=2)
  26. rating = models.FloatField()
  27. authors = models.ManyToManyField(Author)
  28. publisher = models.ForeignKey(Publisher)
  29. pubdate = models.DateField()
  30. class Store(models.Model):
  31. name = models.CharField(max_length=300)
  32. books = models.ManyToManyField(Book)
  33. registered_users = models.PositiveIntegerField()
  34. Cheat sheet
  35. ===========
  36. In a hurry? Here's how to do common aggregate queries, assuming the models above:
  37. .. code-block:: python
  38. # Total number of books.
  39. >>> Book.objects.count()
  40. 2452
  41. # Total number of books with publisher=BaloneyPress
  42. >>> Book.objects.filter(publisher__name='BaloneyPress').count()
  43. 73
  44. # Average price across all books.
  45. >>> from django.db.models import Avg
  46. >>> Book.objects.all().aggregate(Avg('price'))
  47. {'price__avg': 34.35}
  48. # Max price across all books.
  49. >>> from django.db.models import Max
  50. >>> Book.objects.all().aggregate(Max('price'))
  51. {'price__max': Decimal('81.20')}
  52. # Cost per page
  53. >>> from django.db.models import F, FloatField, Sum
  54. >>> Book.objects.all().aggregate(
  55. ... price_per_page=Sum(F('price')/F('pages'), output_field=FloatField()))
  56. {'price_per_page': 0.4470664529184653}
  57. # All the following queries involve traversing the Book<->Publisher
  58. # foreign key relationship backwards.
  59. # Each publisher, each with a count of books as a "num_books" attribute.
  60. >>> from django.db.models import Count
  61. >>> pubs = Publisher.objects.annotate(num_books=Count('book'))
  62. >>> pubs
  63. <QuerySet [<Publisher: BaloneyPress>, <Publisher: SalamiPress>, ...]>
  64. >>> pubs[0].num_books
  65. 73
  66. # The top 5 publishers, in order by number of books.
  67. >>> pubs = Publisher.objects.annotate(num_books=Count('book')).order_by('-num_books')[:5]
  68. >>> pubs[0].num_books
  69. 1323
  70. Generating aggregates over a ``QuerySet``
  71. =========================================
  72. Django provides two ways to generate aggregates. The first way is to generate
  73. summary values over an entire ``QuerySet``. For example, say you wanted to
  74. calculate the average price of all books available for sale. Django's query
  75. syntax provides a means for describing the set of all books::
  76. >>> Book.objects.all()
  77. What we need is a way to calculate summary values over the objects that
  78. belong to this ``QuerySet``. This is done by appending an ``aggregate()``
  79. clause onto the ``QuerySet``::
  80. >>> from django.db.models import Avg
  81. >>> Book.objects.all().aggregate(Avg('price'))
  82. {'price__avg': 34.35}
  83. The ``all()`` is redundant in this example, so this could be simplified to::
  84. >>> Book.objects.aggregate(Avg('price'))
  85. {'price__avg': 34.35}
  86. The argument to the ``aggregate()`` clause describes the aggregate value that
  87. we want to compute - in this case, the average of the ``price`` field on the
  88. ``Book`` model. A list of the aggregate functions that are available can be
  89. found in the :ref:`QuerySet reference <aggregation-functions>`.
  90. ``aggregate()`` is a terminal clause for a ``QuerySet`` that, when invoked,
  91. returns a dictionary of name-value pairs. The name is an identifier for the
  92. aggregate value; the value is the computed aggregate. The name is
  93. automatically generated from the name of the field and the aggregate function.
  94. If you want to manually specify a name for the aggregate value, you can do so
  95. by providing that name when you specify the aggregate clause::
  96. >>> Book.objects.aggregate(average_price=Avg('price'))
  97. {'average_price': 34.35}
  98. If you want to generate more than one aggregate, you just add another
  99. argument to the ``aggregate()`` clause. So, if we also wanted to know
  100. the maximum and minimum price of all books, we would issue the query::
  101. >>> from django.db.models import Avg, Max, Min
  102. >>> Book.objects.aggregate(Avg('price'), Max('price'), Min('price'))
  103. {'price__avg': 34.35, 'price__max': Decimal('81.20'), 'price__min': Decimal('12.99')}
  104. Generating aggregates for each item in a ``QuerySet``
  105. =====================================================
  106. The second way to generate summary values is to generate an independent
  107. summary for each object in a ``QuerySet``. For example, if you are retrieving
  108. a list of books, you may want to know how many authors contributed to
  109. each book. Each Book has a many-to-many relationship with the Author; we
  110. want to summarize this relationship for each book in the ``QuerySet``.
  111. Per-object summaries can be generated using the ``annotate()`` clause.
  112. When an ``annotate()`` clause is specified, each object in the ``QuerySet``
  113. will be annotated with the specified values.
  114. The syntax for these annotations is identical to that used for the
  115. ``aggregate()`` clause. Each argument to ``annotate()`` describes an
  116. aggregate that is to be calculated. For example, to annotate books with
  117. the number of authors:
  118. .. code-block:: python
  119. # Build an annotated queryset
  120. >>> from django.db.models import Count
  121. >>> q = Book.objects.annotate(Count('authors'))
  122. # Interrogate the first object in the queryset
  123. >>> q[0]
  124. <Book: The Definitive Guide to Django>
  125. >>> q[0].authors__count
  126. 2
  127. # Interrogate the second object in the queryset
  128. >>> q[1]
  129. <Book: Practical Django Projects>
  130. >>> q[1].authors__count
  131. 1
  132. As with ``aggregate()``, the name for the annotation is automatically derived
  133. from the name of the aggregate function and the name of the field being
  134. aggregated. You can override this default name by providing an alias when you
  135. specify the annotation::
  136. >>> q = Book.objects.annotate(num_authors=Count('authors'))
  137. >>> q[0].num_authors
  138. 2
  139. >>> q[1].num_authors
  140. 1
  141. Unlike ``aggregate()``, ``annotate()`` is *not* a terminal clause. The output
  142. of the ``annotate()`` clause is a ``QuerySet``; this ``QuerySet`` can be
  143. modified using any other ``QuerySet`` operation, including ``filter()``,
  144. ``order_by()``, or even additional calls to ``annotate()``.
  145. .. _combining-multiple-aggregations:
  146. Combining multiple aggregations
  147. -------------------------------
  148. Combining multiple aggregations with ``annotate()`` will `yield the wrong
  149. results <https://code.djangoproject.com/ticket/10060>`_ because joins are used
  150. instead of subqueries:
  151. >>> book = Book.objects.first()
  152. >>> book.authors.count()
  153. 2
  154. >>> book.store_set.count()
  155. 3
  156. >>> q = Book.objects.annotate(Count('authors'), Count('store'))
  157. >>> q[0].authors__count
  158. 6
  159. >>> q[0].store__count
  160. 6
  161. For most aggregates, there is no way to avoid this problem, however, the
  162. :class:`~django.db.models.Count` aggregate has a ``distinct`` parameter that
  163. may help:
  164. >>> q = Book.objects.annotate(Count('authors', distinct=True), Count('store', distinct=True))
  165. >>> q[0].authors__count
  166. 2
  167. >>> q[0].store__count
  168. 3
  169. .. admonition:: If in doubt, inspect the SQL query!
  170. In order to understand what happens in your query, consider inspecting the
  171. ``query`` property of your ``QuerySet``.
  172. Joins and aggregates
  173. ====================
  174. So far, we have dealt with aggregates over fields that belong to the
  175. model being queried. However, sometimes the value you want to aggregate
  176. will belong to a model that is related to the model you are querying.
  177. When specifying the field to be aggregated in an aggregate function, Django
  178. will allow you to use the same :ref:`double underscore notation
  179. <field-lookups-intro>` that is used when referring to related fields in
  180. filters. Django will then handle any table joins that are required to retrieve
  181. and aggregate the related value.
  182. For example, to find the price range of books offered in each store,
  183. you could use the annotation::
  184. >>> from django.db.models import Max, Min
  185. >>> Store.objects.annotate(min_price=Min('books__price'), max_price=Max('books__price'))
  186. This tells Django to retrieve the ``Store`` model, join (through the
  187. many-to-many relationship) with the ``Book`` model, and aggregate on the
  188. price field of the book model to produce a minimum and maximum value.
  189. The same rules apply to the ``aggregate()`` clause. If you wanted to
  190. know the lowest and highest price of any book that is available for sale
  191. in any of the stores, you could use the aggregate::
  192. >>> Store.objects.aggregate(min_price=Min('books__price'), max_price=Max('books__price'))
  193. Join chains can be as deep as you require. For example, to extract the
  194. age of the youngest author of any book available for sale, you could
  195. issue the query::
  196. >>> Store.objects.aggregate(youngest_age=Min('books__authors__age'))
  197. Following relationships backwards
  198. ---------------------------------
  199. In a way similar to :ref:`lookups-that-span-relationships`, aggregations and
  200. annotations on fields of models or models that are related to the one you are
  201. querying can include traversing "reverse" relationships. The lowercase name
  202. of related models and double-underscores are used here too.
  203. For example, we can ask for all publishers, annotated with their respective
  204. total book stock counters (note how we use ``'book'`` to specify the
  205. ``Publisher`` -> ``Book`` reverse foreign key hop)::
  206. >>> from django.db.models import Count, Min, Sum, Avg
  207. >>> Publisher.objects.annotate(Count('book'))
  208. (Every ``Publisher`` in the resulting ``QuerySet`` will have an extra attribute
  209. called ``book__count``.)
  210. We can also ask for the oldest book of any of those managed by every publisher::
  211. >>> Publisher.objects.aggregate(oldest_pubdate=Min('book__pubdate'))
  212. (The resulting dictionary will have a key called ``'oldest_pubdate'``. If no
  213. such alias were specified, it would be the rather long ``'book__pubdate__min'``.)
  214. This doesn't apply just to foreign keys. It also works with many-to-many
  215. relations. For example, we can ask for every author, annotated with the total
  216. number of pages considering all the books the author has (co-)authored (note how we
  217. use ``'book'`` to specify the ``Author`` -> ``Book`` reverse many-to-many hop)::
  218. >>> Author.objects.annotate(total_pages=Sum('book__pages'))
  219. (Every ``Author`` in the resulting ``QuerySet`` will have an extra attribute
  220. called ``total_pages``. If no such alias were specified, it would be the rather
  221. long ``book__pages__sum``.)
  222. Or ask for the average rating of all the books written by author(s) we have on
  223. file::
  224. >>> Author.objects.aggregate(average_rating=Avg('book__rating'))
  225. (The resulting dictionary will have a key called ``'average_rating'``. If no
  226. such alias were specified, it would be the rather long ``'book__rating__avg'``.)
  227. Aggregations and other ``QuerySet`` clauses
  228. ===========================================
  229. ``filter()`` and ``exclude()``
  230. ------------------------------
  231. Aggregates can also participate in filters. Any ``filter()`` (or
  232. ``exclude()``) applied to normal model fields will have the effect of
  233. constraining the objects that are considered for aggregation.
  234. When used with an ``annotate()`` clause, a filter has the effect of
  235. constraining the objects for which an annotation is calculated. For example,
  236. you can generate an annotated list of all books that have a title starting
  237. with "Django" using the query::
  238. >>> from django.db.models import Count, Avg
  239. >>> Book.objects.filter(name__startswith="Django").annotate(num_authors=Count('authors'))
  240. When used with an ``aggregate()`` clause, a filter has the effect of
  241. constraining the objects over which the aggregate is calculated.
  242. For example, you can generate the average price of all books with a
  243. title that starts with "Django" using the query::
  244. >>> Book.objects.filter(name__startswith="Django").aggregate(Avg('price'))
  245. Filtering on annotations
  246. ~~~~~~~~~~~~~~~~~~~~~~~~
  247. Annotated values can also be filtered. The alias for the annotation can be
  248. used in ``filter()`` and ``exclude()`` clauses in the same way as any other
  249. model field.
  250. For example, to generate a list of books that have more than one author,
  251. you can issue the query::
  252. >>> Book.objects.annotate(num_authors=Count('authors')).filter(num_authors__gt=1)
  253. This query generates an annotated result set, and then generates a filter
  254. based upon that annotation.
  255. Order of ``annotate()`` and ``filter()`` clauses
  256. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  257. When developing a complex query that involves both ``annotate()`` and
  258. ``filter()`` clauses, pay particular attention to the order in which the
  259. clauses are applied to the ``QuerySet``.
  260. When an ``annotate()`` clause is applied to a query, the annotation is computed
  261. over the state of the query up to the point where the annotation is requested.
  262. The practical implication of this is that ``filter()`` and ``annotate()`` are
  263. not commutative operations.
  264. Given:
  265. * Publisher A has two books with ratings 4 and 5.
  266. * Publisher B has two books with ratings 1 and 4.
  267. * Publisher C has one book with rating 1.
  268. Here's an example with the ``Count`` aggregate::
  269. >>> a, b = Publisher.objects.annotate(num_books=Count('book', distinct=True)).filter(book__rating__gt=3.0)
  270. >>> a, a.num_books
  271. (<Publisher: A>, 2)
  272. >>> b, b.num_books
  273. (<Publisher: B>, 2)
  274. >>> a, b = Publisher.objects.filter(book__rating__gt=3.0).annotate(num_books=Count('book'))
  275. >>> a, a.num_books
  276. (<Publisher: A>, 2)
  277. >>> b, b.num_books
  278. (<Publisher: B>, 1)
  279. Both queries return a list of publishers that have at least one book with a
  280. rating exceeding 3.0, hence publisher C is excluded.
  281. In the first query, the annotation precedes the filter, so the filter has no
  282. effect on the annotation. ``distinct=True`` is required to avoid a :ref:`query
  283. bug <combining-multiple-aggregations>`.
  284. The second query counts the number of books that have a rating exceeding 3.0
  285. for each publisher. The filter precedes the annotation, so the filter
  286. constrains the objects considered when calculating the annotation.
  287. Here's another example with the ``Avg`` aggregate::
  288. >>> a, b = Publisher.objects.annotate(avg_rating=Avg('book__rating')).filter(book__rating__gt=3.0)
  289. >>> a, a.avg_rating
  290. (<Publisher: A>, 4.5) # (5+4)/2
  291. >>> b, b.avg_rating
  292. (<Publisher: B>, 2.5) # (1+4)/2
  293. >>> a, b = Publisher.objects.filter(book__rating__gt=3.0).annotate(avg_rating=Avg('book__rating'))
  294. >>> a, a.avg_rating
  295. (<Publisher: A>, 4.5) # (5+4)/2
  296. >>> b, b.avg_rating
  297. (<Publisher: B>, 4.0) # 4/1 (book with rating 1 excluded)
  298. The first query asks for the average rating of all a publisher's books for
  299. publisher's that have at least one book with a rating exceeding 3.0. The second
  300. query asks for the average of a publisher's book's ratings for only those
  301. ratings exceeding 3.0.
  302. It's difficult to intuit how the ORM will translate complex querysets into SQL
  303. queries so when in doubt, inspect the SQL with ``str(queryset.query)`` and
  304. write plenty of tests.
  305. ``order_by()``
  306. --------------
  307. Annotations can be used as a basis for ordering. When you
  308. define an ``order_by()`` clause, the aggregates you provide can reference
  309. any alias defined as part of an ``annotate()`` clause in the query.
  310. For example, to order a ``QuerySet`` of books by the number of authors
  311. that have contributed to the book, you could use the following query::
  312. >>> Book.objects.annotate(num_authors=Count('authors')).order_by('num_authors')
  313. ``values()``
  314. ------------
  315. Ordinarily, annotations are generated on a per-object basis - an annotated
  316. ``QuerySet`` will return one result for each object in the original
  317. ``QuerySet``. However, when a ``values()`` clause is used to constrain the
  318. columns that are returned in the result set, the method for evaluating
  319. annotations is slightly different. Instead of returning an annotated result
  320. for each result in the original ``QuerySet``, the original results are
  321. grouped according to the unique combinations of the fields specified in the
  322. ``values()`` clause. An annotation is then provided for each unique group;
  323. the annotation is computed over all members of the group.
  324. For example, consider an author query that attempts to find out the average
  325. rating of books written by each author:
  326. >>> Author.objects.annotate(average_rating=Avg('book__rating'))
  327. This will return one result for each author in the database, annotated with
  328. their average book rating.
  329. However, the result will be slightly different if you use a ``values()`` clause::
  330. >>> Author.objects.values('name').annotate(average_rating=Avg('book__rating'))
  331. In this example, the authors will be grouped by name, so you will only get
  332. an annotated result for each *unique* author name. This means if you have
  333. two authors with the same name, their results will be merged into a single
  334. result in the output of the query; the average will be computed as the
  335. average over the books written by both authors.
  336. Order of ``annotate()`` and ``values()`` clauses
  337. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  338. As with the ``filter()`` clause, the order in which ``annotate()`` and
  339. ``values()`` clauses are applied to a query is significant. If the
  340. ``values()`` clause precedes the ``annotate()``, the annotation will be
  341. computed using the grouping described by the ``values()`` clause.
  342. However, if the ``annotate()`` clause precedes the ``values()`` clause,
  343. the annotations will be generated over the entire query set. In this case,
  344. the ``values()`` clause only constrains the fields that are generated on
  345. output.
  346. For example, if we reverse the order of the ``values()`` and ``annotate()``
  347. clause from our previous example::
  348. >>> Author.objects.annotate(average_rating=Avg('book__rating')).values('name', 'average_rating')
  349. This will now yield one unique result for each author; however, only
  350. the author's name and the ``average_rating`` annotation will be returned
  351. in the output data.
  352. You should also note that ``average_rating`` has been explicitly included
  353. in the list of values to be returned. This is required because of the
  354. ordering of the ``values()`` and ``annotate()`` clause.
  355. If the ``values()`` clause precedes the ``annotate()`` clause, any annotations
  356. will be automatically added to the result set. However, if the ``values()``
  357. clause is applied after the ``annotate()`` clause, you need to explicitly
  358. include the aggregate column.
  359. .. _aggregation-ordering-interaction:
  360. Interaction with default ordering or ``order_by()``
  361. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  362. Fields that are mentioned in the ``order_by()`` part of a queryset (or which
  363. are used in the default ordering on a model) are used when selecting the
  364. output data, even if they are not otherwise specified in the ``values()``
  365. call. These extra fields are used to group "like" results together and they
  366. can make otherwise identical result rows appear to be separate. This shows up,
  367. particularly, when counting things.
  368. By way of example, suppose you have a model like this::
  369. from django.db import models
  370. class Item(models.Model):
  371. name = models.CharField(max_length=10)
  372. data = models.IntegerField()
  373. class Meta:
  374. ordering = ["name"]
  375. The important part here is the default ordering on the ``name`` field. If you
  376. want to count how many times each distinct ``data`` value appears, you might
  377. try this::
  378. # Warning: not quite correct!
  379. Item.objects.values("data").annotate(Count("id"))
  380. ...which will group the ``Item`` objects by their common ``data`` values and
  381. then count the number of ``id`` values in each group. Except that it won't
  382. quite work. The default ordering by ``name`` will also play a part in the
  383. grouping, so this query will group by distinct ``(data, name)`` pairs, which
  384. isn't what you want. Instead, you should construct this queryset::
  385. Item.objects.values("data").annotate(Count("id")).order_by()
  386. ...clearing any ordering in the query. You could also order by, say, ``data``
  387. without any harmful effects, since that is already playing a role in the
  388. query.
  389. This behavior is the same as that noted in the queryset documentation for
  390. :meth:`~django.db.models.query.QuerySet.distinct` and the general rule is the
  391. same: normally you won't want extra columns playing a part in the result, so
  392. clear out the ordering, or at least make sure it's restricted only to those
  393. fields you also select in a ``values()`` call.
  394. .. note::
  395. You might reasonably ask why Django doesn't remove the extraneous columns
  396. for you. The main reason is consistency with ``distinct()`` and other
  397. places: Django **never** removes ordering constraints that you have
  398. specified (and we can't change those other methods' behavior, as that
  399. would violate our :doc:`/misc/api-stability` policy).
  400. Aggregating annotations
  401. -----------------------
  402. You can also generate an aggregate on the result of an annotation. When you
  403. define an ``aggregate()`` clause, the aggregates you provide can reference
  404. any alias defined as part of an ``annotate()`` clause in the query.
  405. For example, if you wanted to calculate the average number of authors per
  406. book you first annotate the set of books with the author count, then
  407. aggregate that author count, referencing the annotation field::
  408. >>> from django.db.models import Count, Avg
  409. >>> Book.objects.annotate(num_authors=Count('authors')).aggregate(Avg('num_authors'))
  410. {'num_authors__avg': 1.66}