querysets.txt 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685
  1. ======================
  2. QuerySet API reference
  3. ======================
  4. .. currentmodule:: django.db.models.query
  5. This document describes the details of the ``QuerySet`` API. It builds on the
  6. material presented in the :doc:`model </topics/db/models>` and :doc:`database
  7. query </topics/db/queries>` guides, so you'll probably want to read and
  8. understand those documents before reading this one.
  9. Throughout this reference we'll use the :ref:`example Weblog models
  10. <queryset-model-example>` presented in the :doc:`database query guide
  11. </topics/db/queries>`.
  12. .. _when-querysets-are-evaluated:
  13. When QuerySets are evaluated
  14. ============================
  15. Internally, a ``QuerySet`` can be constructed, filtered, sliced, and generally
  16. passed around without actually hitting the database. No database activity
  17. actually occurs until you do something to evaluate the queryset.
  18. You can evaluate a ``QuerySet`` in the following ways:
  19. * **Iteration.** A ``QuerySet`` is iterable, and it executes its database
  20. query the first time you iterate over it. For example, this will print
  21. the headline of all entries in the database::
  22. for e in Entry.objects.all():
  23. print(e.headline)
  24. Note: Don't use this if all you want to do is determine if at least one
  25. result exists. It's more efficient to use :meth:`~QuerySet.exists`.
  26. * **Slicing.** As explained in :ref:`limiting-querysets`, a ``QuerySet`` can
  27. be sliced, using Python's array-slicing syntax. Slicing an unevaluated
  28. ``QuerySet`` usually returns another unevaluated ``QuerySet``, but Django
  29. will execute the database query if you use the "step" parameter of slice
  30. syntax, and will return a list. Slicing a ``QuerySet`` that has been
  31. evaluated (partially or fully) also returns a list.
  32. * **Pickling/Caching.** See the following section for details of what
  33. is involved when `pickling QuerySets`_. The important thing for the
  34. purposes of this section is that the results are read from the database.
  35. * **repr().** A ``QuerySet`` is evaluated when you call ``repr()`` on it.
  36. This is for convenience in the Python interactive interpreter, so you can
  37. immediately see your results when using the API interactively.
  38. * **len().** A ``QuerySet`` is evaluated when you call ``len()`` on it.
  39. This, as you might expect, returns the length of the result list.
  40. Note: *Don't* use ``len()`` on ``QuerySet``\s if all you want to do is
  41. determine the number of records in the set. It's much more efficient to
  42. handle a count at the database level, using SQL's ``SELECT COUNT(*)``,
  43. and Django provides a ``count()`` method for precisely this reason. See
  44. ``count()`` below.
  45. * **list().** Force evaluation of a ``QuerySet`` by calling ``list()`` on
  46. it. For example::
  47. entry_list = list(Entry.objects.all())
  48. Be warned, though, that this could have a large memory overhead, because
  49. Django will load each element of the list into memory. In contrast,
  50. iterating over a ``QuerySet`` will take advantage of your database to
  51. load data and instantiate objects only as you need them.
  52. * **bool().** Testing a ``QuerySet`` in a boolean context, such as using
  53. ``bool()``, ``or``, ``and`` or an ``if`` statement, will cause the query
  54. to be executed. If there is at least one result, the ``QuerySet`` is
  55. ``True``, otherwise ``False``. For example::
  56. if Entry.objects.filter(headline="Test"):
  57. print("There is at least one Entry with the headline Test")
  58. Note: *Don't* use this if all you want to do is determine if at least one
  59. result exists, and don't need the actual objects. It's more efficient to
  60. use :meth:`~QuerySet.exists` (see below).
  61. .. _pickling QuerySets:
  62. Pickling QuerySets
  63. ------------------
  64. If you :mod:`pickle` a ``QuerySet``, this will force all the results to be loaded
  65. into memory prior to pickling. Pickling is usually used as a precursor to
  66. caching and when the cached queryset is reloaded, you want the results to
  67. already be present and ready for use (reading from the database can take some
  68. time, defeating the purpose of caching). This means that when you unpickle a
  69. ``QuerySet``, it contains the results at the moment it was pickled, rather
  70. than the results that are currently in the database.
  71. If you only want to pickle the necessary information to recreate the
  72. ``QuerySet`` from the database at a later time, pickle the ``query`` attribute
  73. of the ``QuerySet``. You can then recreate the original ``QuerySet`` (without
  74. any results loaded) using some code like this::
  75. >>> import pickle
  76. >>> query = pickle.loads(s) # Assuming 's' is the pickled string.
  77. >>> qs = MyModel.objects.all()
  78. >>> qs.query = query # Restore the original 'query'.
  79. The ``query`` attribute is an opaque object. It represents the internals of
  80. the query construction and is not part of the public API. However, it is safe
  81. (and fully supported) to pickle and unpickle the attribute's contents as
  82. described here.
  83. .. admonition:: You can't share pickles between versions
  84. Pickles of ``QuerySets`` are only valid for the version of Django that
  85. was used to generate them. If you generate a pickle using Django
  86. version N, there is no guarantee that pickle will be readable with
  87. Django version N+1. Pickles should not be used as part of a long-term
  88. archival strategy.
  89. .. _queryset-api:
  90. QuerySet API
  91. ============
  92. Here's the formal declaration of a ``QuerySet``:
  93. .. class:: QuerySet([model=None, query=None, using=None])
  94. Usually when you'll interact with a ``QuerySet`` you'll use it by
  95. :ref:`chaining filters <chaining-filters>`. To make this work, most
  96. ``QuerySet`` methods return new querysets. These methods are covered in
  97. detail later in this section.
  98. The ``QuerySet`` class has two public attributes you can use for
  99. introspection:
  100. .. attribute:: ordered
  101. ``True`` if the ``QuerySet`` is ordered — i.e. has an
  102. :meth:`order_by()` clause or a default ordering on the model.
  103. ``False`` otherwise.
  104. .. attribute:: db
  105. The database that will be used if this query is executed now.
  106. .. note::
  107. The ``query`` parameter to :class:`QuerySet` exists so that specialized
  108. query subclasses such as
  109. :class:`~django.contrib.gis.db.models.GeoQuerySet` can reconstruct
  110. internal query state. The value of the parameter is an opaque
  111. representation of that query state and is not part of a public API.
  112. To put it simply: if you need to ask, you don't need to use it.
  113. .. currentmodule:: django.db.models.query.QuerySet
  114. Methods that return new QuerySets
  115. ---------------------------------
  116. Django provides a range of ``QuerySet`` refinement methods that modify either
  117. the types of results returned by the ``QuerySet`` or the way its SQL query is
  118. executed.
  119. filter
  120. ~~~~~~
  121. .. method:: filter(**kwargs)
  122. Returns a new ``QuerySet`` containing objects that match the given lookup
  123. parameters.
  124. The lookup parameters (``**kwargs``) should be in the format described in
  125. `Field lookups`_ below. Multiple parameters are joined via ``AND`` in the
  126. underlying SQL statement.
  127. exclude
  128. ~~~~~~~
  129. .. method:: exclude(**kwargs)
  130. Returns a new ``QuerySet`` containing objects that do *not* match the given
  131. lookup parameters.
  132. The lookup parameters (``**kwargs``) should be in the format described in
  133. `Field lookups`_ below. Multiple parameters are joined via ``AND`` in the
  134. underlying SQL statement, and the whole thing is enclosed in a ``NOT()``.
  135. This example excludes all entries whose ``pub_date`` is later than 2005-1-3
  136. AND whose ``headline`` is "Hello"::
  137. Entry.objects.exclude(pub_date__gt=datetime.date(2005, 1, 3), headline='Hello')
  138. In SQL terms, that evaluates to::
  139. SELECT ...
  140. WHERE NOT (pub_date > '2005-1-3' AND headline = 'Hello')
  141. This example excludes all entries whose ``pub_date`` is later than 2005-1-3
  142. OR whose headline is "Hello"::
  143. Entry.objects.exclude(pub_date__gt=datetime.date(2005, 1, 3)).exclude(headline='Hello')
  144. In SQL terms, that evaluates to::
  145. SELECT ...
  146. WHERE NOT pub_date > '2005-1-3'
  147. AND NOT headline = 'Hello'
  148. Note the second example is more restrictive.
  149. annotate
  150. ~~~~~~~~
  151. .. method:: annotate(*args, **kwargs)
  152. Annotates each object in the ``QuerySet`` with the provided list of
  153. aggregate values (averages, sums, etc) that have been computed over
  154. the objects that are related to the objects in the ``QuerySet``.
  155. Each argument to ``annotate()`` is an annotation that will be added
  156. to each object in the ``QuerySet`` that is returned.
  157. The aggregation functions that are provided by Django are described
  158. in `Aggregation Functions`_ below.
  159. Annotations specified using keyword arguments will use the keyword as
  160. the alias for the annotation. Anonymous arguments will have an alias
  161. generated for them based upon the name of the aggregate function and
  162. the model field that is being aggregated.
  163. For example, if you were manipulating a list of blogs, you may want
  164. to determine how many entries have been made in each blog::
  165. >>> from django.db.models import Count
  166. >>> q = Blog.objects.annotate(Count('entry'))
  167. # The name of the first blog
  168. >>> q[0].name
  169. 'Blogasaurus'
  170. # The number of entries on the first blog
  171. >>> q[0].entry__count
  172. 42
  173. The ``Blog`` model doesn't define an ``entry__count`` attribute by itself,
  174. but by using a keyword argument to specify the aggregate function, you can
  175. control the name of the annotation::
  176. >>> q = Blog.objects.annotate(number_of_entries=Count('entry'))
  177. # The number of entries on the first blog, using the name provided
  178. >>> q[0].number_of_entries
  179. 42
  180. For an in-depth discussion of aggregation, see :doc:`the topic guide on
  181. Aggregation </topics/db/aggregation>`.
  182. order_by
  183. ~~~~~~~~
  184. .. method:: order_by(*fields)
  185. By default, results returned by a ``QuerySet`` are ordered by the ordering
  186. tuple given by the ``ordering`` option in the model's ``Meta``. You can
  187. override this on a per-``QuerySet`` basis by using the ``order_by`` method.
  188. Example::
  189. Entry.objects.filter(pub_date__year=2005).order_by('-pub_date', 'headline')
  190. The result above will be ordered by ``pub_date`` descending, then by
  191. ``headline`` ascending. The negative sign in front of ``"-pub_date"`` indicates
  192. *descending* order. Ascending order is implied. To order randomly, use ``"?"``,
  193. like so::
  194. Entry.objects.order_by('?')
  195. Note: ``order_by('?')`` queries may be expensive and slow, depending on the
  196. database backend you're using.
  197. To order by a field in a different model, use the same syntax as when you are
  198. querying across model relations. That is, the name of the field, followed by a
  199. double underscore (``__``), followed by the name of the field in the new model,
  200. and so on for as many models as you want to join. For example::
  201. Entry.objects.order_by('blog__name', 'headline')
  202. If you try to order by a field that is a relation to another model, Django will
  203. use the default ordering on the related model (or order by the related model's
  204. primary key if there is no :attr:`Meta.ordering
  205. <django.db.models.Options.ordering>` specified. For example::
  206. Entry.objects.order_by('blog')
  207. ...is identical to::
  208. Entry.objects.order_by('blog__id')
  209. ...since the ``Blog`` model has no default ordering specified.
  210. Be cautious when ordering by fields in related models if you are also using
  211. :meth:`distinct()`. See the note in :meth:`distinct` for an explanation of how
  212. related model ordering can change the expected results.
  213. .. note::
  214. It is permissible to specify a multi-valued field to order the results by
  215. (for example, a :class:`~django.db.models.ManyToManyField` field, or the
  216. reverse relation of a :class:`~django.db.models.ForeignKey` field).
  217. Consider this case::
  218. class Event(Model):
  219. parent = models.ForeignKey('self', related_name='children')
  220. date = models.DateField()
  221. Event.objects.order_by('children__date')
  222. Here, there could potentially be multiple ordering data for each ``Event``;
  223. each ``Event`` with multiple ``children`` will be returned multiple times
  224. into the new ``QuerySet`` that ``order_by()`` creates. In other words,
  225. using ``order_by()`` on the ``QuerySet`` could return more items than you
  226. were working on to begin with - which is probably neither expected nor
  227. useful.
  228. Thus, take care when using multi-valued field to order the results. **If**
  229. you can be sure that there will only be one ordering piece of data for each
  230. of the items you're ordering, this approach should not present problems. If
  231. not, make sure the results are what you expect.
  232. There's no way to specify whether ordering should be case sensitive. With
  233. respect to case-sensitivity, Django will order results however your database
  234. backend normally orders them.
  235. If you don't want any ordering to be applied to a query, not even the default
  236. ordering, call :meth:`order_by()` with no parameters.
  237. You can tell if a query is ordered or not by checking the
  238. :attr:`.QuerySet.ordered` attribute, which will be ``True`` if the
  239. ``QuerySet`` has been ordered in any way.
  240. .. warning::
  241. Ordering is not a free operation. Each field you add to the ordering
  242. incurs a cost to your database. Each foreign key you add will
  243. implicitly include all of its default orderings as well.
  244. reverse
  245. ~~~~~~~
  246. .. method:: reverse()
  247. Use the ``reverse()`` method to reverse the order in which a queryset's
  248. elements are returned. Calling ``reverse()`` a second time restores the
  249. ordering back to the normal direction.
  250. To retrieve the "last" five items in a queryset, you could do this::
  251. my_queryset.reverse()[:5]
  252. Note that this is not quite the same as slicing from the end of a sequence in
  253. Python. The above example will return the last item first, then the
  254. penultimate item and so on. If we had a Python sequence and looked at
  255. ``seq[-5:]``, we would see the fifth-last item first. Django doesn't support
  256. that mode of access (slicing from the end), because it's not possible to do it
  257. efficiently in SQL.
  258. Also, note that ``reverse()`` should generally only be called on a ``QuerySet``
  259. which has a defined ordering (e.g., when querying against a model which defines
  260. a default ordering, or when using :meth:`order_by()`). If no such ordering is
  261. defined for a given ``QuerySet``, calling ``reverse()`` on it has no real
  262. effect (the ordering was undefined prior to calling ``reverse()``, and will
  263. remain undefined afterward).
  264. distinct
  265. ~~~~~~~~
  266. .. method:: distinct([*fields])
  267. Returns a new ``QuerySet`` that uses ``SELECT DISTINCT`` in its SQL query. This
  268. eliminates duplicate rows from the query results.
  269. By default, a ``QuerySet`` will not eliminate duplicate rows. In practice, this
  270. is rarely a problem, because simple queries such as ``Blog.objects.all()``
  271. don't introduce the possibility of duplicate result rows. However, if your
  272. query spans multiple tables, it's possible to get duplicate results when a
  273. ``QuerySet`` is evaluated. That's when you'd use ``distinct()``.
  274. .. note::
  275. Any fields used in an :meth:`order_by` call are included in the SQL
  276. ``SELECT`` columns. This can sometimes lead to unexpected results when used
  277. in conjunction with ``distinct()``. If you order by fields from a related
  278. model, those fields will be added to the selected columns and they may make
  279. otherwise duplicate rows appear to be distinct. Since the extra columns
  280. don't appear in the returned results (they are only there to support
  281. ordering), it sometimes looks like non-distinct results are being returned.
  282. Similarly, if you use a :meth:`values()` query to restrict the columns
  283. selected, the columns used in any :meth:`order_by()` (or default model
  284. ordering) will still be involved and may affect uniqueness of the results.
  285. The moral here is that if you are using ``distinct()`` be careful about
  286. ordering by related models. Similarly, when using ``distinct()`` and
  287. :meth:`values()` together, be careful when ordering by fields not in the
  288. :meth:`values()` call.
  289. On PostgreSQL only, you can pass positional arguments (``*fields``) in order to
  290. specify the names of fields to which the ``DISTINCT`` should apply. This
  291. translates to a ``SELECT DISTINCT ON`` SQL query. Here's the difference. For a
  292. normal ``distinct()`` call, the database compares *each* field in each row when
  293. determining which rows are distinct. For a ``distinct()`` call with specified
  294. field names, the database will only compare the specified field names.
  295. .. note::
  296. When you specify field names, you *must* provide an ``order_by()`` in the
  297. ``QuerySet``, and the fields in ``order_by()`` must start with the fields in
  298. ``distinct()``, in the same order.
  299. For example, ``SELECT DISTINCT ON (a)`` gives you the first row for each
  300. value in column ``a``. If you don't specify an order, you'll get some
  301. arbitrary row.
  302. Examples (those after the first will only work on PostgreSQL)::
  303. >>> Author.objects.distinct()
  304. [...]
  305. >>> Entry.objects.order_by('pub_date').distinct('pub_date')
  306. [...]
  307. >>> Entry.objects.order_by('blog').distinct('blog')
  308. [...]
  309. >>> Entry.objects.order_by('author', 'pub_date').distinct('author', 'pub_date')
  310. [...]
  311. >>> Entry.objects.order_by('blog__name', 'mod_date').distinct('blog__name', 'mod_date')
  312. [...]
  313. >>> Entry.objects.order_by('author', 'pub_date').distinct('author')
  314. [...]
  315. values
  316. ~~~~~~
  317. .. method:: values(*fields)
  318. Returns a ``ValuesQuerySet`` — a ``QuerySet`` subclass that returns
  319. dictionaries when used as an iterable, rather than model-instance objects.
  320. Each of those dictionaries represents an object, with the keys corresponding to
  321. the attribute names of model objects.
  322. This example compares the dictionaries of ``values()`` with the normal model
  323. objects::
  324. # This list contains a Blog object.
  325. >>> Blog.objects.filter(name__startswith='Beatles')
  326. [<Blog: Beatles Blog>]
  327. # This list contains a dictionary.
  328. >>> Blog.objects.filter(name__startswith='Beatles').values()
  329. [{'id': 1, 'name': 'Beatles Blog', 'tagline': 'All the latest Beatles news.'}]
  330. The ``values()`` method takes optional positional arguments, ``*fields``, which
  331. specify field names to which the ``SELECT`` should be limited. If you specify
  332. the fields, each dictionary will contain only the field keys/values for the
  333. fields you specify. If you don't specify the fields, each dictionary will
  334. contain a key and value for every field in the database table.
  335. Example::
  336. >>> Blog.objects.values()
  337. [{'id': 1, 'name': 'Beatles Blog', 'tagline': 'All the latest Beatles news.'}],
  338. >>> Blog.objects.values('id', 'name')
  339. [{'id': 1, 'name': 'Beatles Blog'}]
  340. A few subtleties that are worth mentioning:
  341. * If you have a field called ``foo`` that is a
  342. :class:`~django.db.models.ForeignKey`, the default ``values()`` call
  343. will return a dictionary key called ``foo_id``, since this is the name
  344. of the hidden model attribute that stores the actual value (the ``foo``
  345. attribute refers to the related model). When you are calling
  346. ``values()`` and passing in field names, you can pass in either ``foo``
  347. or ``foo_id`` and you will get back the same thing (the dictionary key
  348. will match the field name you passed in).
  349. For example::
  350. >>> Entry.objects.values()
  351. [{'blog_id': 1, 'headline': u'First Entry', ...}, ...]
  352. >>> Entry.objects.values('blog')
  353. [{'blog': 1}, ...]
  354. >>> Entry.objects.values('blog_id')
  355. [{'blog_id': 1}, ...]
  356. * When using ``values()`` together with :meth:`distinct()`, be aware that
  357. ordering can affect the results. See the note in :meth:`distinct` for
  358. details.
  359. * If you use a ``values()`` clause after an :meth:`extra()` call,
  360. any fields defined by a ``select`` argument in the :meth:`extra()` must
  361. be explicitly included in the ``values()`` call. Any :meth:`extra()` call
  362. made after a ``values()`` call will have its extra selected fields
  363. ignored.
  364. A ``ValuesQuerySet`` is useful when you know you're only going to need values
  365. from a small number of the available fields and you won't need the
  366. functionality of a model instance object. It's more efficient to select only
  367. the fields you need to use.
  368. Finally, note a ``ValuesQuerySet`` is a subclass of ``QuerySet``, so it has all
  369. methods of ``QuerySet``. You can call ``filter()`` on it, or ``order_by()``, or
  370. whatever. Yes, that means these two calls are identical::
  371. Blog.objects.values().order_by('id')
  372. Blog.objects.order_by('id').values()
  373. The people who made Django prefer to put all the SQL-affecting methods first,
  374. followed (optionally) by any output-affecting methods (such as ``values()``),
  375. but it doesn't really matter. This is your chance to really flaunt your
  376. individualism.
  377. You can also refer to fields on related models with reverse relations through
  378. ``OneToOneField``, ``ForeignKey`` and ``ManyToManyField`` attributes::
  379. Blog.objects.values('name', 'entry__headline')
  380. [{'name': 'My blog', 'entry__headline': 'An entry'},
  381. {'name': 'My blog', 'entry__headline': 'Another entry'}, ...]
  382. .. warning::
  383. Because :class:`~django.db.models.ManyToManyField` attributes and reverse
  384. relations can have multiple related rows, including these can have a
  385. multiplier effect on the size of your result set. This will be especially
  386. pronounced if you include multiple such fields in your ``values()`` query,
  387. in which case all possible combinations will be returned.
  388. values_list
  389. ~~~~~~~~~~~
  390. .. method:: values_list(*fields)
  391. This is similar to ``values()`` except that instead of returning dictionaries,
  392. it returns tuples when iterated over. Each tuple contains the value from the
  393. respective field passed into the ``values_list()`` call — so the first item is
  394. the first field, etc. For example::
  395. >>> Entry.objects.values_list('id', 'headline')
  396. [(1, u'First entry'), ...]
  397. If you only pass in a single field, you can also pass in the ``flat``
  398. parameter. If ``True``, this will mean the returned results are single values,
  399. rather than one-tuples. An example should make the difference clearer::
  400. >>> Entry.objects.values_list('id').order_by('id')
  401. [(1,), (2,), (3,), ...]
  402. >>> Entry.objects.values_list('id', flat=True).order_by('id')
  403. [1, 2, 3, ...]
  404. It is an error to pass in ``flat`` when there is more than one field.
  405. If you don't pass any values to ``values_list()``, it will return all the
  406. fields in the model, in the order they were declared.
  407. Note that this method returns a ``ValuesListQuerySet``. This class behaves
  408. like a list. Most of the time this is enough, but if you require an actual
  409. Python list object, you can simply call ``list()`` on it, which will evaluate
  410. the queryset.
  411. dates
  412. ~~~~~
  413. .. method:: dates(field, kind, order='ASC')
  414. Returns a ``DateQuerySet`` — a ``QuerySet`` that evaluates to a list of
  415. :class:`datetime.date` objects representing all available dates of a
  416. particular kind within the contents of the ``QuerySet``.
  417. .. versionchanged:: 1.6
  418. ``dates`` used to return a list of :class:`datetime.datetime` objects.
  419. ``field`` should be the name of a ``DateField`` of your model.
  420. .. versionchanged:: 1.6
  421. ``dates`` used to accept operating on a ``DateTimeField``.
  422. ``kind`` should be either ``"year"``, ``"month"`` or ``"day"``. Each
  423. ``datetime.date`` object in the result list is "truncated" to the given
  424. ``type``.
  425. * ``"year"`` returns a list of all distinct year values for the field.
  426. * ``"month"`` returns a list of all distinct year/month values for the
  427. field.
  428. * ``"day"`` returns a list of all distinct year/month/day values for the
  429. field.
  430. ``order``, which defaults to ``'ASC'``, should be either ``'ASC'`` or
  431. ``'DESC'``. This specifies how to order the results.
  432. Examples::
  433. >>> Entry.objects.dates('pub_date', 'year')
  434. [datetime.date(2005, 1, 1)]
  435. >>> Entry.objects.dates('pub_date', 'month')
  436. [datetime.date(2005, 2, 1), datetime.date(2005, 3, 1)]
  437. >>> Entry.objects.dates('pub_date', 'day')
  438. [datetime.date(2005, 2, 20), datetime.date(2005, 3, 20)]
  439. >>> Entry.objects.dates('pub_date', 'day', order='DESC')
  440. [datetime.date(2005, 3, 20), datetime.date(2005, 2, 20)]
  441. >>> Entry.objects.filter(headline__contains='Lennon').dates('pub_date', 'day')
  442. [datetime.date(2005, 3, 20)]
  443. datetimes
  444. ~~~~~~~~~
  445. .. versionadded:: 1.6
  446. .. method:: datetimes(field, kind, order='ASC', tzinfo=None)
  447. Returns a ``DateTimeQuerySet`` — a ``QuerySet`` that evaluates to a list of
  448. :class:`datetime.datetime` objects representing all available dates of a
  449. particular kind within the contents of the ``QuerySet``.
  450. ``field`` should be the name of a ``DateTimeField`` of your model.
  451. ``kind`` should be either ``"year"``, ``"month"``, ``"day"``, ``"hour"``,
  452. ``"minute"`` or ``"second"``. Each ``datetime.datetime`` object in the result
  453. list is "truncated" to the given ``type``.
  454. ``order``, which defaults to ``'ASC'``, should be either ``'ASC'`` or
  455. ``'DESC'``. This specifies how to order the results.
  456. ``tzinfo`` defines the time zone to which datetimes are converted prior to
  457. truncation. Indeed, a given datetime has different representations depending
  458. on the time zone in use. This parameter must be a :class:`datetime.tzinfo`
  459. object. If it's ``None``, Django uses the :ref:`current time zone
  460. <default-current-time-zone>`. It has no effect when :setting:`USE_TZ` is
  461. ``False``.
  462. .. _database-time-zone-definitions:
  463. .. note::
  464. This function performs time zone conversions directly in the database.
  465. As a consequence, your database must be able to interpret the value of
  466. ``tzinfo.tzname(None)``. This translates into the following requirements:
  467. - SQLite: install pytz_ — conversions are actually performed in Python.
  468. - PostgreSQL: no requirements (see `Time Zones`_).
  469. - Oracle: no requirements (see `Choosing a Time Zone File`_).
  470. - MySQL: install pytz_ and load the time zone tables with
  471. `mysql_tzinfo_to_sql`_.
  472. .. _pytz: http://pytz.sourceforge.net/
  473. .. _Time Zones: http://www.postgresql.org/docs/current/static/datatype-datetime.html#DATATYPE-TIMEZONES
  474. .. _Choosing a Time Zone File: http://docs.oracle.com/cd/B19306_01/server.102/b14225/ch4datetime.htm#i1006667
  475. .. _mysql_tzinfo_to_sql: http://dev.mysql.com/doc/refman/5.5/en/mysql-tzinfo-to-sql.html
  476. none
  477. ~~~~
  478. .. method:: none()
  479. Calling none() will create a queryset that never returns any objects and no
  480. query will be executed when accessing the results. A qs.none() queryset
  481. is an instance of ``EmptyQuerySet``.
  482. Examples::
  483. >>> Entry.objects.none()
  484. []
  485. >>> from django.db.models.query import EmptyQuerySet
  486. >>> isinstance(Entry.objects.none(), EmptyQuerySet)
  487. True
  488. all
  489. ~~~
  490. .. method:: all()
  491. Returns a *copy* of the current ``QuerySet`` (or ``QuerySet`` subclass). This
  492. can be useful in situations where you might want to pass in either a model
  493. manager or a ``QuerySet`` and do further filtering on the result. After calling
  494. ``all()`` on either object, you'll definitely have a ``QuerySet`` to work with.
  495. select_related
  496. ~~~~~~~~~~~~~~
  497. .. method:: select_related(*fields)
  498. Returns a ``QuerySet`` that will "follow" foreign-key relationships, selecting
  499. additional related-object data when it executes its query. This is a
  500. performance booster which results in a single more complex query but means
  501. later use of foreign-key relationships won't require database queries.
  502. The following examples illustrate the difference between plain lookups and
  503. ``select_related()`` lookups. Here's standard lookup::
  504. # Hits the database.
  505. e = Entry.objects.get(id=5)
  506. # Hits the database again to get the related Blog object.
  507. b = e.blog
  508. And here's ``select_related`` lookup::
  509. # Hits the database.
  510. e = Entry.objects.select_related('blog').get(id=5)
  511. # Doesn't hit the database, because e.blog has been prepopulated
  512. # in the previous query.
  513. b = e.blog
  514. You can follow foreign keys in a similar way to querying them. If you have the
  515. following models::
  516. from django.db import models
  517. class City(models.Model):
  518. # ...
  519. pass
  520. class Person(models.Model):
  521. # ...
  522. hometown = models.ForeignKey(City)
  523. class Book(models.Model):
  524. # ...
  525. author = models.ForeignKey(Person)
  526. ...then a call to ``Book.objects.select_related('person',
  527. 'person__city').get(id=4)`` will cache the related ``Person`` *and* the related
  528. ``City``::
  529. b = Book.objects.select_related('person__city').get(id=4)
  530. p = b.author # Doesn't hit the database.
  531. c = p.hometown # Doesn't hit the database.
  532. b = Book.objects.get(id=4) # No select_related() in this example.
  533. p = b.author # Hits the database.
  534. c = p.hometown # Hits the database.
  535. You can refer to any :class:`~django.db.models.ForeignKey` or
  536. :class:`~django.db.models.OneToOneField` relation in the list of fields
  537. passed to ``select_related()``.
  538. You can also refer to the reverse direction of a
  539. :class:`~django.db.models.OneToOneField` in the list of fields passed to
  540. ``select_related`` — that is, you can traverse a
  541. :class:`~django.db.models.OneToOneField` back to the object on which the field
  542. is defined. Instead of specifying the field name, use the :attr:`related_name
  543. <django.db.models.ForeignKey.related_name>` for the field on the related object.
  544. There may be some situations where you wish to call ``select_related()`` with a
  545. lot of related objects, or where you don't know all of the relations. In these
  546. cases it is possible to call ``select_related()`` with no arguments. This will
  547. follow all non-null foreign keys it can find - nullable foreign keys must be
  548. specified. This is not recommended in most cases as it is likely to make the
  549. underlying query more complex, and return more data, than is actually needed.
  550. .. versionadded:: 1.6
  551. If you need to clear the list of related fields added by past calls of
  552. ``select_related`` on a ``QuerySet``, you can pass ``None`` as a parameter::
  553. >>> without_relations = queryset.select_related(None)
  554. .. versionchanged:: 1.7
  555. Chaining ``select_related`` calls now works in a similar way to other methods -
  556. that is that ``select_related('foo', 'bar')`` is equivalent to
  557. ``select_related('foo').select_related('bar')``. Previously the latter would
  558. have been equivalent to ``select_related('bar')``.
  559. prefetch_related
  560. ~~~~~~~~~~~~~~~~
  561. .. method:: prefetch_related(*lookups)
  562. Returns a ``QuerySet`` that will automatically retrieve, in a single batch,
  563. related objects for each of the specified lookups.
  564. This has a similar purpose to ``select_related``, in that both are designed to
  565. stop the deluge of database queries that is caused by accessing related objects,
  566. but the strategy is quite different.
  567. ``select_related`` works by creating an SQL join and including the fields of the
  568. related object in the ``SELECT`` statement. For this reason, ``select_related``
  569. gets the related objects in the same database query. However, to avoid the much
  570. larger result set that would result from joining across a 'many' relationship,
  571. ``select_related`` is limited to single-valued relationships - foreign key and
  572. one-to-one.
  573. ``prefetch_related``, on the other hand, does a separate lookup for each
  574. relationship, and does the 'joining' in Python. This allows it to prefetch
  575. many-to-many and many-to-one objects, which cannot be done using
  576. ``select_related``, in addition to the foreign key and one-to-one relationships
  577. that are supported by ``select_related``. It also supports prefetching of
  578. :class:`~django.contrib.contenttypes.generic.GenericRelation` and
  579. :class:`~django.contrib.contenttypes.generic.GenericForeignKey`.
  580. For example, suppose you have these models::
  581. from django.db import models
  582. class Topping(models.Model):
  583. name = models.CharField(max_length=30)
  584. class Pizza(models.Model):
  585. name = models.CharField(max_length=50)
  586. toppings = models.ManyToManyField(Topping)
  587. # On Python 3: def __str__(self):
  588. def __unicode__(self):
  589. return u"%s (%s)" % (self.name, u", ".join([topping.name
  590. for topping in self.toppings.all()]))
  591. and run::
  592. >>> Pizza.objects.all()
  593. [u"Hawaiian (ham, pineapple)", u"Seafood (prawns, smoked salmon)"...
  594. The problem with this is that every time ``Pizza.__unicode__()`` asks for
  595. ``self.toppings.all()`` it has to query the database, so
  596. ``Pizza.objects.all()`` will run a query on the Toppings table for **every**
  597. item in the Pizza ``QuerySet``.
  598. We can reduce to just two queries using ``prefetch_related``:
  599. >>> Pizza.objects.all().prefetch_related('toppings')
  600. This implies a ``self.toppings.all()`` for each ``Pizza``; now each time
  601. ``self.toppings.all()`` is called, instead of having to go to the database for
  602. the items, it will find them in a prefetched ``QuerySet`` cache that was
  603. populated in a single query.
  604. That is, all the relevant toppings will have been fetched in a single query,
  605. and used to make ``QuerySets`` that have a pre-filled cache of the relevant
  606. results; these ``QuerySets`` are then used in the ``self.toppings.all()`` calls.
  607. The additional queries in ``prefetch_related()`` are executed after the
  608. ``QuerySet`` has begun to be evaluated and the primary query has been executed.
  609. Note that the result cache of the primary ``QuerySet`` and all specified related
  610. objects will then be fully loaded into memory. This changes the typical
  611. behavior of ``QuerySets``, which normally try to avoid loading all objects into
  612. memory before they are needed, even after a query has been executed in the
  613. database.
  614. .. note::
  615. Remember that, as always with ``QuerySets``, any subsequent chained methods
  616. which imply a different database query will ignore previously cached
  617. results, and retrieve data using a fresh database query. So, if you write
  618. the following:
  619. >>> pizzas = Pizza.objects.prefetch_related('toppings')
  620. >>> [list(pizza.toppings.filter(spicy=True)) for pizza in pizzas]
  621. ...then the fact that ``pizza.toppings.all()`` has been prefetched will not
  622. help you. The ``prefetch_related('toppings')`` implied
  623. ``pizza.toppings.all()``, but ``pizza.toppings.filter()`` is a new and
  624. different query. The prefetched cache can't help here; in fact it hurts
  625. performance, since you have done a database query that you haven't used. So
  626. use this feature with caution!
  627. You can also use the normal join syntax to do related fields of related
  628. fields. Suppose we have an additional model to the example above::
  629. class Restaurant(models.Model):
  630. pizzas = models.ManyToMany(Pizza, related_name='restaurants')
  631. best_pizza = models.ForeignKey(Pizza, related_name='championed_by')
  632. The following are all legal:
  633. >>> Restaurant.objects.prefetch_related('pizzas__toppings')
  634. This will prefetch all pizzas belonging to restaurants, and all toppings
  635. belonging to those pizzas. This will result in a total of 3 database queries -
  636. one for the restaurants, one for the pizzas, and one for the toppings.
  637. >>> Restaurant.objects.prefetch_related('best_pizza__toppings')
  638. This will fetch the best pizza and all the toppings for the best pizza for each
  639. restaurant. This will be done in 3 database queries - one for the restaurants,
  640. one for the 'best pizzas', and one for one for the toppings.
  641. Of course, the ``best_pizza`` relationship could also be fetched using
  642. ``select_related`` to reduce the query count to 2:
  643. >>> Restaurant.objects.select_related('best_pizza').prefetch_related('best_pizza__toppings')
  644. Since the prefetch is executed after the main query (which includes the joins
  645. needed by ``select_related``), it is able to detect that the ``best_pizza``
  646. objects have already been fetched, and it will skip fetching them again.
  647. Chaining ``prefetch_related`` calls will accumulate the lookups that are
  648. prefetched. To clear any ``prefetch_related`` behavior, pass ``None`` as a
  649. parameter:
  650. >>> non_prefetched = qs.prefetch_related(None)
  651. One difference to note when using ``prefetch_related`` is that objects created
  652. by a query can be shared between the different objects that they are related to
  653. i.e. a single Python model instance can appear at more than one point in the
  654. tree of objects that are returned. This will normally happen with foreign key
  655. relationships. Typically this behavior will not be a problem, and will in fact
  656. save both memory and CPU time.
  657. While ``prefetch_related`` supports prefetching ``GenericForeignKey``
  658. relationships, the number of queries will depend on the data. Since a
  659. ``GenericForeignKey`` can reference data in multiple tables, one query per table
  660. referenced is needed, rather than one query for all the items. There could be
  661. additional queries on the ``ContentType`` table if the relevant rows have not
  662. already been fetched.
  663. ``prefetch_related`` in most cases will be implemented using an SQL query that
  664. uses the 'IN' operator. This means that for a large ``QuerySet`` a large 'IN' clause
  665. could be generated, which, depending on the database, might have performance
  666. problems of its own when it comes to parsing or executing the SQL query. Always
  667. profile for your use case!
  668. Note that if you use ``iterator()`` to run the query, ``prefetch_related()``
  669. calls will be ignored since these two optimizations do not make sense together.
  670. .. versionadded:: 1.7
  671. You can use the :class:`~django.db.models.Prefetch` object to further control
  672. the prefetch operation.
  673. In its simplest form ``Prefetch`` is equivalent to the traditional string based
  674. lookups:
  675. >>> Restaurant.objects.prefetch_related(Prefetch('pizzas__toppings'))
  676. You can provide a custom queryset with the optional ``queryset`` argument.
  677. This can be used to change the default ordering of the queryset:
  678. >>> Restaurant.objects.prefetch_related(
  679. ... Prefetch('pizzas__toppings', queryset=Toppings.objects.order_by('name')))
  680. Or to call :meth:`~django.db.models.query.QuerySet.select_related()` when
  681. applicable to reduce the number of queries even further:
  682. >>> Pizza.objects.prefetch_related(
  683. ... Prefetch('restaurants', queryset=Restaurant.objects.select_related('best_pizza')))
  684. You can also assign the prefetched result to a custom attribute with the optional
  685. ``to_attr`` argument. The result will be stored directly in a list.
  686. This allows prefetching the same relation multiple times with a different
  687. ``QuerySet``; for instance:
  688. >>> vegetarian_pizzas = Pizza.objects.filter(vegetarian=True)
  689. >>> Restaurant.objects.prefetch_related(
  690. ... Prefetch('pizzas', to_attr='menu'),
  691. ... Prefetch('pizzas', queryset=vegetarian_pizzas, to_attr='vegetarian_menu'))
  692. Lookups created with custom ``to_attr`` can still be traversed as usual by other
  693. lookups:
  694. >>> vegetarian_pizzas = Pizza.objects.filter(vegetarian=True)
  695. >>> Restaurant.objects.prefetch_related(
  696. ... Prefetch('pizzas', queryset=vegetarian_pizzas, to_attr='vegetarian_menu'),
  697. ... 'vegetarian_menu__toppings')
  698. Using ``to_attr`` is recommended when filtering down the prefetch result as it is
  699. less ambiguous than storing a filtered result in the related manager's cache:
  700. >>> queryset = Pizza.objects.filter(vegetarian=True)
  701. >>>
  702. >>> # Recommended:
  703. >>> restaurants = Restaurant.objects.prefetch_related(
  704. ... Prefetch('pizzas', to_attr='vegetarian_pizzas' queryset=queryset))
  705. >>> vegetarian_pizzas = restaurants[0].vegetarian_pizzas
  706. >>>
  707. >>> # Not recommended:
  708. >>> restaurants = Restaurant.objects.prefetch_related(
  709. ... Prefetch('pizzas', queryset=queryset))
  710. >>> vegetarian_pizzas = restaurants[0].pizzas.all()
  711. .. note::
  712. The ordering of lookups matters.
  713. Take the following examples:
  714. >>> prefetch_related('pizzas__toppings', 'pizzas')
  715. This works even though it's unordered because ``'pizzas__toppings'``
  716. already contains all the needed information, therefore the second argument
  717. ``'pizzas'`` is actually redundant.
  718. >>> prefetch_related('pizzas__toppings', Prefetch('pizzas', queryset=Pizza.objects.all()))
  719. This will raise a ``ValueError`` because of the attempt to redefine the
  720. queryset of a previously seen lookup. Note that an implicit queryset was
  721. created to traverse ``'pizzas'`` as part of the ``'pizzas__toppings'``
  722. lookup.
  723. >>> prefetch_related('pizza_list__toppings', Prefetch('pizzas', to_attr='pizza_list'))
  724. This will trigger an ``AttributeError`` because ``'pizza_list'`` doesn't exist yet
  725. when ``'pizza_list__toppings'`` is being processed.
  726. This consideration is not limited to the use of ``Prefetch`` objects. Some
  727. advanced techniques may require that the lookups be performed in a
  728. specific order to avoid creating extra queries; therefore it's recommended
  729. to always carefully order ``prefetch_related`` arguments.
  730. extra
  731. ~~~~~
  732. .. method:: extra(select=None, where=None, params=None, tables=None, order_by=None, select_params=None)
  733. Sometimes, the Django query syntax by itself can't easily express a complex
  734. ``WHERE`` clause. For these edge cases, Django provides the ``extra()``
  735. ``QuerySet`` modifier — a hook for injecting specific clauses into the SQL
  736. generated by a ``QuerySet``.
  737. By definition, these extra lookups may not be portable to different database
  738. engines (because you're explicitly writing SQL code) and violate the DRY
  739. principle, so you should avoid them if possible.
  740. Specify one or more of ``params``, ``select``, ``where`` or ``tables``. None
  741. of the arguments is required, but you should use at least one of them.
  742. * ``select``
  743. The ``select`` argument lets you put extra fields in the ``SELECT``
  744. clause. It should be a dictionary mapping attribute names to SQL
  745. clauses to use to calculate that attribute.
  746. Example::
  747. Entry.objects.extra(select={'is_recent': "pub_date > '2006-01-01'"})
  748. As a result, each ``Entry`` object will have an extra attribute,
  749. ``is_recent``, a boolean representing whether the entry's ``pub_date``
  750. is greater than Jan. 1, 2006.
  751. Django inserts the given SQL snippet directly into the ``SELECT``
  752. statement, so the resulting SQL of the above example would be something
  753. like::
  754. SELECT blog_entry.*, (pub_date > '2006-01-01') AS is_recent
  755. FROM blog_entry;
  756. The next example is more advanced; it does a subquery to give each
  757. resulting ``Blog`` object an ``entry_count`` attribute, an integer count
  758. of associated ``Entry`` objects::
  759. Blog.objects.extra(
  760. select={
  761. 'entry_count': 'SELECT COUNT(*) FROM blog_entry WHERE blog_entry.blog_id = blog_blog.id'
  762. },
  763. )
  764. In this particular case, we're exploiting the fact that the query will
  765. already contain the ``blog_blog`` table in its ``FROM`` clause.
  766. The resulting SQL of the above example would be::
  767. SELECT blog_blog.*, (SELECT COUNT(*) FROM blog_entry WHERE blog_entry.blog_id = blog_blog.id) AS entry_count
  768. FROM blog_blog;
  769. Note that the parentheses required by most database engines around
  770. subqueries are not required in Django's ``select`` clauses. Also note
  771. that some database backends, such as some MySQL versions, don't support
  772. subqueries.
  773. In some rare cases, you might wish to pass parameters to the SQL
  774. fragments in ``extra(select=...)``. For this purpose, use the
  775. ``select_params`` parameter. Since ``select_params`` is a sequence and
  776. the ``select`` attribute is a dictionary, some care is required so that
  777. the parameters are matched up correctly with the extra select pieces.
  778. In this situation, you should use a :class:`collections.OrderedDict` for
  779. the ``select`` value, not just a normal Python dictionary.
  780. This will work, for example::
  781. Blog.objects.extra(
  782. select=OrderedDict([('a', '%s'), ('b', '%s')]),
  783. select_params=('one', 'two'))
  784. The only thing to be careful about when using select parameters in
  785. ``extra()`` is to avoid using the substring ``"%%s"`` (that's *two*
  786. percent characters before the ``s``) in the select strings. Django's
  787. tracking of parameters looks for ``%s`` and an escaped ``%`` character
  788. like this isn't detected. That will lead to incorrect results.
  789. * ``where`` / ``tables``
  790. You can define explicit SQL ``WHERE`` clauses — perhaps to perform
  791. non-explicit joins — by using ``where``. You can manually add tables to
  792. the SQL ``FROM`` clause by using ``tables``.
  793. ``where`` and ``tables`` both take a list of strings. All ``where``
  794. parameters are "AND"ed to any other search criteria.
  795. Example::
  796. Entry.objects.extra(where=["foo='a' OR bar = 'a'", "baz = 'a'"])
  797. ...translates (roughly) into the following SQL::
  798. SELECT * FROM blog_entry WHERE (foo='a' OR bar='a') AND (baz='a')
  799. Be careful when using the ``tables`` parameter if you're specifying
  800. tables that are already used in the query. When you add extra tables
  801. via the ``tables`` parameter, Django assumes you want that table
  802. included an extra time, if it is already included. That creates a
  803. problem, since the table name will then be given an alias. If a table
  804. appears multiple times in an SQL statement, the second and subsequent
  805. occurrences must use aliases so the database can tell them apart. If
  806. you're referring to the extra table you added in the extra ``where``
  807. parameter this is going to cause errors.
  808. Normally you'll only be adding extra tables that don't already appear
  809. in the query. However, if the case outlined above does occur, there are
  810. a few solutions. First, see if you can get by without including the
  811. extra table and use the one already in the query. If that isn't
  812. possible, put your ``extra()`` call at the front of the queryset
  813. construction so that your table is the first use of that table.
  814. Finally, if all else fails, look at the query produced and rewrite your
  815. ``where`` addition to use the alias given to your extra table. The
  816. alias will be the same each time you construct the queryset in the same
  817. way, so you can rely upon the alias name to not change.
  818. * ``order_by``
  819. If you need to order the resulting queryset using some of the new
  820. fields or tables you have included via ``extra()`` use the ``order_by``
  821. parameter to ``extra()`` and pass in a sequence of strings. These
  822. strings should either be model fields (as in the normal
  823. :meth:`order_by()` method on querysets), of the form
  824. ``table_name.column_name`` or an alias for a column that you specified
  825. in the ``select`` parameter to ``extra()``.
  826. For example::
  827. q = Entry.objects.extra(select={'is_recent': "pub_date > '2006-01-01'"})
  828. q = q.extra(order_by = ['-is_recent'])
  829. This would sort all the items for which ``is_recent`` is true to the
  830. front of the result set (``True`` sorts before ``False`` in a
  831. descending ordering).
  832. This shows, by the way, that you can make multiple calls to ``extra()``
  833. and it will behave as you expect (adding new constraints each time).
  834. * ``params``
  835. The ``where`` parameter described above may use standard Python
  836. database string placeholders — ``'%s'`` to indicate parameters the
  837. database engine should automatically quote. The ``params`` argument is
  838. a list of any extra parameters to be substituted.
  839. Example::
  840. Entry.objects.extra(where=['headline=%s'], params=['Lennon'])
  841. Always use ``params`` instead of embedding values directly into
  842. ``where`` because ``params`` will ensure values are quoted correctly
  843. according to your particular backend. For example, quotes will be
  844. escaped correctly.
  845. Bad::
  846. Entry.objects.extra(where=["headline='Lennon'"])
  847. Good::
  848. Entry.objects.extra(where=['headline=%s'], params=['Lennon'])
  849. defer
  850. ~~~~~
  851. .. method:: defer(*fields)
  852. In some complex data-modeling situations, your models might contain a lot of
  853. fields, some of which could contain a lot of data (for example, text fields),
  854. or require expensive processing to convert them to Python objects. If you are
  855. using the results of a queryset in some situation where you don't know
  856. if you need those particular fields when you initially fetch the data, you can
  857. tell Django not to retrieve them from the database.
  858. This is done by passing the names of the fields to not load to ``defer()``::
  859. Entry.objects.defer("headline", "body")
  860. A queryset that has deferred fields will still return model instances. Each
  861. deferred field will be retrieved from the database if you access that field
  862. (one at a time, not all the deferred fields at once).
  863. You can make multiple calls to ``defer()``. Each call adds new fields to the
  864. deferred set::
  865. # Defers both the body and headline fields.
  866. Entry.objects.defer("body").filter(rating=5).defer("headline")
  867. The order in which fields are added to the deferred set does not matter.
  868. Calling ``defer()`` with a field name that has already been deferred is
  869. harmless (the field will still be deferred).
  870. You can defer loading of fields in related models (if the related models are
  871. loading via :meth:`select_related()`) by using the standard double-underscore
  872. notation to separate related fields::
  873. Blog.objects.select_related().defer("entry__headline", "entry__body")
  874. If you want to clear the set of deferred fields, pass ``None`` as a parameter
  875. to ``defer()``::
  876. # Load all fields immediately.
  877. my_queryset.defer(None)
  878. Some fields in a model won't be deferred, even if you ask for them. You can
  879. never defer the loading of the primary key. If you are using
  880. :meth:`select_related()` to retrieve related models, you shouldn't defer the
  881. loading of the field that connects from the primary model to the related
  882. one, doing so will result in an error.
  883. .. note::
  884. The ``defer()`` method (and its cousin, :meth:`only()`, below) are only for
  885. advanced use-cases. They provide an optimization for when you have analyzed
  886. your queries closely and understand *exactly* what information you need and
  887. have measured that the difference between returning the fields you need and
  888. the full set of fields for the model will be significant.
  889. Even if you think you are in the advanced use-case situation, **only use
  890. defer() when you cannot, at queryset load time, determine if you will need
  891. the extra fields or not**. If you are frequently loading and using a
  892. particular subset of your data, the best choice you can make is to
  893. normalize your models and put the non-loaded data into a separate model
  894. (and database table). If the columns *must* stay in the one table for some
  895. reason, create a model with ``Meta.managed = False`` (see the
  896. :attr:`managed attribute <django.db.models.Options.managed>` documentation)
  897. containing just the fields you normally need to load and use that where you
  898. might otherwise call ``defer()``. This makes your code more explicit to the
  899. reader, is slightly faster and consumes a little less memory in the Python
  900. process.
  901. .. note::
  902. When calling :meth:`~django.db.models.Model.save()` for instances with
  903. deferred fields, only the loaded fields will be saved. See
  904. :meth:`~django.db.models.Model.save()` for more details.
  905. only
  906. ~~~~
  907. .. method:: only(*fields)
  908. The ``only()`` method is more or less the opposite of :meth:`defer()`. You call
  909. it with the fields that should *not* be deferred when retrieving a model. If
  910. you have a model where almost all the fields need to be deferred, using
  911. ``only()`` to specify the complementary set of fields can result in simpler
  912. code.
  913. Suppose you have a model with fields ``name``, ``age`` and ``biography``. The
  914. following two querysets are the same, in terms of deferred fields::
  915. Person.objects.defer("age", "biography")
  916. Person.objects.only("name")
  917. Whenever you call ``only()`` it *replaces* the set of fields to load
  918. immediately. The method's name is mnemonic: **only** those fields are loaded
  919. immediately; the remainder are deferred. Thus, successive calls to ``only()``
  920. result in only the final fields being considered::
  921. # This will defer all fields except the headline.
  922. Entry.objects.only("body", "rating").only("headline")
  923. Since ``defer()`` acts incrementally (adding fields to the deferred list), you
  924. can combine calls to ``only()`` and ``defer()`` and things will behave
  925. logically::
  926. # Final result is that everything except "headline" is deferred.
  927. Entry.objects.only("headline", "body").defer("body")
  928. # Final result loads headline and body immediately (only() replaces any
  929. # existing set of fields).
  930. Entry.objects.defer("body").only("headline", "body")
  931. All of the cautions in the note for the :meth:`defer` documentation apply to
  932. ``only()`` as well. Use it cautiously and only after exhausting your other
  933. options.
  934. Using :meth:`only` and omitting a field requested using :meth:`select_related`
  935. is an error as well.
  936. .. note::
  937. When calling :meth:`~django.db.models.Model.save()` for instances with
  938. deferred fields, only the loaded fields will be saved. See
  939. :meth:`~django.db.models.Model.save()` for more details.
  940. using
  941. ~~~~~
  942. .. method:: using(alias)
  943. This method is for controlling which database the ``QuerySet`` will be
  944. evaluated against if you are using more than one database. The only argument
  945. this method takes is the alias of a database, as defined in
  946. :setting:`DATABASES`.
  947. For example::
  948. # queries the database with the 'default' alias.
  949. >>> Entry.objects.all()
  950. # queries the database with the 'backup' alias
  951. >>> Entry.objects.using('backup')
  952. select_for_update
  953. ~~~~~~~~~~~~~~~~~
  954. .. method:: select_for_update(nowait=False)
  955. Returns a queryset that will lock rows until the end of the transaction,
  956. generating a ``SELECT ... FOR UPDATE`` SQL statement on supported databases.
  957. For example::
  958. entries = Entry.objects.select_for_update().filter(author=request.user)
  959. All matched entries will be locked until the end of the transaction block,
  960. meaning that other transactions will be prevented from changing or acquiring
  961. locks on them.
  962. Usually, if another transaction has already acquired a lock on one of the
  963. selected rows, the query will block until the lock is released. If this is
  964. not the behavior you want, call ``select_for_update(nowait=True)``. This will
  965. make the call non-blocking. If a conflicting lock is already acquired by
  966. another transaction, :exc:`~django.db.DatabaseError` will be raised when the
  967. queryset is evaluated.
  968. Currently, the ``postgresql_psycopg2``, ``oracle``, and ``mysql`` database
  969. backends support ``select_for_update()``. However, MySQL has no support for the
  970. ``nowait`` argument. Obviously, users of external third-party backends should
  971. check with their backend's documentation for specifics in those cases.
  972. Passing ``nowait=True`` to ``select_for_update`` using database backends that
  973. do not support ``nowait``, such as MySQL, will cause a
  974. :exc:`~django.db.DatabaseError` to be raised. This is in order to prevent code
  975. unexpectedly blocking.
  976. Using ``select_for_update`` on backends which do not support
  977. ``SELECT ... FOR UPDATE`` (such as SQLite) will have no effect.
  978. raw
  979. ~~~
  980. .. method:: raw(raw_query, params=None, translations=None)
  981. .. versionchanged:: 1.7
  982. ``raw`` was moved to the ``QuerySet`` class. It was previously only on
  983. :class:`~django.db.models.Manager`.
  984. Takes a raw SQL query, executes it, and returns a
  985. ``django.db.models.query.RawQuerySet`` instance. This ``RawQuerySet`` instance
  986. can be iterated over just like an normal ``QuerySet`` to provide object instances.
  987. See the :ref:`executing-raw-queries` for more information.
  988. .. warning::
  989. ``raw()`` always triggers a new query and doesn't account for previous
  990. filtering. As such, it should generally be called from the ``Manager`` or
  991. from a fresh ``QuerySet`` instance.
  992. Methods that do not return QuerySets
  993. ------------------------------------
  994. The following ``QuerySet`` methods evaluate the ``QuerySet`` and return
  995. something *other than* a ``QuerySet``.
  996. These methods do not use a cache (see :ref:`caching-and-querysets`). Rather,
  997. they query the database each time they're called.
  998. get
  999. ~~~
  1000. .. method:: get(**kwargs)
  1001. Returns the object matching the given lookup parameters, which should be in
  1002. the format described in `Field lookups`_.
  1003. ``get()`` raises :exc:`~django.core.exceptions.MultipleObjectsReturned` if more
  1004. than one object was found. The
  1005. :exc:`~django.core.exceptions.MultipleObjectsReturned` exception is an
  1006. attribute of the model class.
  1007. ``get()`` raises a :exc:`~django.core.exceptions.DoesNotExist` exception if an
  1008. object wasn't found for the given parameters. This exception is also an
  1009. attribute of the model class. Example::
  1010. Entry.objects.get(id='foo') # raises Entry.DoesNotExist
  1011. The :exc:`~django.core.exceptions.DoesNotExist` exception inherits from
  1012. :exc:`django.core.exceptions.ObjectDoesNotExist`, so you can target multiple
  1013. :exc:`~django.core.exceptions.DoesNotExist` exceptions. Example::
  1014. from django.core.exceptions import ObjectDoesNotExist
  1015. try:
  1016. e = Entry.objects.get(id=3)
  1017. b = Blog.objects.get(id=1)
  1018. except ObjectDoesNotExist:
  1019. print("Either the entry or blog doesn't exist.")
  1020. create
  1021. ~~~~~~
  1022. .. method:: create(**kwargs)
  1023. A convenience method for creating an object and saving it all in one step. Thus::
  1024. p = Person.objects.create(first_name="Bruce", last_name="Springsteen")
  1025. and::
  1026. p = Person(first_name="Bruce", last_name="Springsteen")
  1027. p.save(force_insert=True)
  1028. are equivalent.
  1029. The :ref:`force_insert <ref-models-force-insert>` parameter is documented
  1030. elsewhere, but all it means is that a new object will always be created.
  1031. Normally you won't need to worry about this. However, if your model contains a
  1032. manual primary key value that you set and if that value already exists in the
  1033. database, a call to ``create()`` will fail with an
  1034. :exc:`~django.db.IntegrityError` since primary keys must be unique. Be
  1035. prepared to handle the exception if you are using manual primary keys.
  1036. get_or_create
  1037. ~~~~~~~~~~~~~
  1038. .. method:: get_or_create(defaults=None, **kwargs)
  1039. A convenience method for looking up an object with the given ``kwargs`` (may be
  1040. empty if your model has defaults for all fields), creating one if necessary.
  1041. .. versionchanged:: 1.6
  1042. Older versions of Django required ``kwargs``.
  1043. Returns a tuple of ``(object, created)``, where ``object`` is the retrieved or
  1044. created object and ``created`` is a boolean specifying whether a new object was
  1045. created.
  1046. This is meant as a shortcut to boilerplatish code. For example::
  1047. try:
  1048. obj = Person.objects.get(first_name='John', last_name='Lennon')
  1049. except Person.DoesNotExist:
  1050. obj = Person(first_name='John', last_name='Lennon', birthday=date(1940, 10, 9))
  1051. obj.save()
  1052. This pattern gets quite unwieldy as the number of fields in a model goes up.
  1053. The above example can be rewritten using ``get_or_create()`` like so::
  1054. obj, created = Person.objects.get_or_create(first_name='John', last_name='Lennon',
  1055. defaults={'birthday': date(1940, 10, 9)})
  1056. Any keyword arguments passed to ``get_or_create()`` — *except* an optional one
  1057. called ``defaults`` — will be used in a :meth:`get()` call. If an object is
  1058. found, ``get_or_create()`` returns a tuple of that object and ``False``. If
  1059. multiple objects are found, ``get_or_create`` raises
  1060. :exc:`~django.core.exceptions.MultipleObjectsReturned`. If an object is *not*
  1061. found, ``get_or_create()`` will instantiate and save a new object, returning a
  1062. tuple of the new object and ``True``. The new object will be created roughly
  1063. according to this algorithm::
  1064. params = dict([(k, v) for k, v in kwargs.items() if '__' not in k])
  1065. params.update(defaults)
  1066. obj = self.model(**params)
  1067. obj.save()
  1068. In English, that means start with any non-``'defaults'`` keyword argument that
  1069. doesn't contain a double underscore (which would indicate a non-exact lookup).
  1070. Then add the contents of ``defaults``, overriding any keys if necessary, and
  1071. use the result as the keyword arguments to the model class. As hinted at
  1072. above, this is a simplification of the algorithm that is used, but it contains
  1073. all the pertinent details. The internal implementation has some more
  1074. error-checking than this and handles some extra edge-conditions; if you're
  1075. interested, read the code.
  1076. If you have a field named ``defaults`` and want to use it as an exact lookup in
  1077. ``get_or_create()``, just use ``'defaults__exact'``, like so::
  1078. Foo.objects.get_or_create(defaults__exact='bar', defaults={'defaults': 'baz'})
  1079. The ``get_or_create()`` method has similar error behavior to :meth:`create()`
  1080. when you're using manually specified primary keys. If an object needs to be
  1081. created and the key already exists in the database, an
  1082. :exc:`~django.db.IntegrityError` will be raised.
  1083. This method is atomic assuming correct usage, correct database configuration,
  1084. and correct behavior of the underlying database. However, if uniqueness is not
  1085. enforced at the database level for the ``kwargs`` used in a ``get_or_create``
  1086. call (see :attr:`~django.db.models.Field.unique` or
  1087. :attr:`~django.db.models.Options.unique_together`), this method is prone to a
  1088. race-condition which can result in multiple rows with the same parameters being
  1089. inserted simultaneously.
  1090. If you are using MySQL, be sure to use the ``READ COMMITTED`` isolation level
  1091. rather than ``REPEATABLE READ`` (the default), otherwise you may see cases
  1092. where ``get_or_create`` will raise an :exc:`~django.db.IntegrityError` but the
  1093. object won't appear in a subsequent :meth:`~django.db.models.query.QuerySet.get`
  1094. call.
  1095. Finally, a word on using ``get_or_create()`` in Django views: please make sure
  1096. to use it only in ``POST`` requests unless you have a good reason not to
  1097. ``GET`` requests shouldn't have any effect on data; use ``POST`` whenever a
  1098. request to a page has a side effect on your data. For more, see `Safe methods`_
  1099. in the HTTP spec.
  1100. .. _Safe methods: http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.1.1
  1101. .. warning::
  1102. You can use ``get_or_create()`` through :class:`~django.db.models.ManyToManyField`
  1103. attributes and reverse relations. In that case you will restrict the queries
  1104. inside the context of that relation. That could lead you to some integrity
  1105. problems if you don't use it consistently.
  1106. Being the following models::
  1107. class Chapter(models.Model):
  1108. title = models.CharField(max_length=255, unique=True)
  1109. class Book(models.Model):
  1110. title = models.CharField(max_length=256)
  1111. chapters = models.ManyToManyField(Chapter)
  1112. You can use ``get_or_create()`` through Book's chapters field, but it only
  1113. fetches inside the context of that book::
  1114. >>> book = Book.objects.create(title="Ulysses")
  1115. >>> book.chapters.get_or_create(title="Telemachus")
  1116. (<Chapter: Telemachus>, True)
  1117. >>> book.chapters.get_or_create(title="Telemachus")
  1118. (<Chapter: Telemachus>, False)
  1119. >>> Chapter.objects.create(title="Chapter 1")
  1120. <Chapter: Chapter 1>
  1121. >>> book.chapters.get_or_create(title="Chapter 1")
  1122. # Raises IntegrityError
  1123. This is happening because it's trying to get or create "Chapter 1" through the
  1124. book "Ulysses", but it can't do any of them: the relation can't fetch that
  1125. chapter because it isn't related to that book, but it can't create it either
  1126. because ``title`` field should be unique.
  1127. update_or_create
  1128. ~~~~~~~~~~~~~~~~
  1129. .. method:: update_or_create(defaults=None, **kwargs)
  1130. .. versionadded:: 1.7
  1131. A convenience method for updating an object with the given ``kwargs``, creating
  1132. a new one if necessary. The ``defaults`` is a dictionary of (field, value)
  1133. pairs used to update the object.
  1134. Returns a tuple of ``(object, created)``, where ``object`` is the created or
  1135. updated object and ``created`` is a boolean specifying whether a new object was
  1136. created.
  1137. The ``update_or_create`` method tries to fetch an object from database based on
  1138. the given ``kwargs``. If a match is found, it updates the fields passed in the
  1139. ``defaults`` dictionary.
  1140. This is meant as a shortcut to boilerplatish code. For example::
  1141. try:
  1142. obj = Person.objects.get(first_name='John', last_name='Lennon')
  1143. for key, value in updated_values.iteritems():
  1144. setattr(obj, key, value)
  1145. obj.save()
  1146. except Person.DoesNotExist:
  1147. updated_values.update({'first_name': 'John', 'last_name': 'Lennon'})
  1148. obj = Person(**updated_values)
  1149. obj.save()
  1150. This pattern gets quite unwieldy as the number of fields in a model goes up.
  1151. The above example can be rewritten using ``update_or_create()`` like so::
  1152. obj, created = Person.objects.update_or_create(
  1153. first_name='John', last_name='Lennon', defaults=updated_values)
  1154. For detailed description how names passed in ``kwargs`` are resolved see
  1155. :meth:`get_or_create`.
  1156. As described above in :meth:`get_or_create`, this method is prone to a
  1157. race-condition which can result in multiple rows being inserted simultaneously
  1158. if uniqueness is not enforced at the database level.
  1159. bulk_create
  1160. ~~~~~~~~~~~
  1161. .. method:: bulk_create(objs, batch_size=None)
  1162. This method inserts the provided list of objects into the database in an
  1163. efficient manner (generally only 1 query, no matter how many objects there
  1164. are)::
  1165. >>> Entry.objects.bulk_create([
  1166. ... Entry(headline="Django 1.0 Released"),
  1167. ... Entry(headline="Django 1.1 Announced"),
  1168. ... Entry(headline="Breaking: Django is awesome")
  1169. ... ])
  1170. This has a number of caveats though:
  1171. * The model's ``save()`` method will not be called, and the ``pre_save`` and
  1172. ``post_save`` signals will not be sent.
  1173. * It does not work with child models in a multi-table inheritance scenario.
  1174. * If the model's primary key is an :class:`~django.db.models.AutoField` it
  1175. does not retrieve and set the primary key attribute, as ``save()`` does.
  1176. * It does not work with many-to-many relationships.
  1177. The ``batch_size`` parameter controls how many objects are created in single
  1178. query. The default is to create all objects in one batch, except for SQLite
  1179. where the default is such that at maximum 999 variables per query is used.
  1180. count
  1181. ~~~~~
  1182. .. method:: count()
  1183. Returns an integer representing the number of objects in the database matching
  1184. the ``QuerySet``. The ``count()`` method never raises exceptions.
  1185. Example::
  1186. # Returns the total number of entries in the database.
  1187. Entry.objects.count()
  1188. # Returns the number of entries whose headline contains 'Lennon'
  1189. Entry.objects.filter(headline__contains='Lennon').count()
  1190. A ``count()`` call performs a ``SELECT COUNT(*)`` behind the scenes, so you
  1191. should always use ``count()`` rather than loading all of the record into Python
  1192. objects and calling ``len()`` on the result (unless you need to load the
  1193. objects into memory anyway, in which case ``len()`` will be faster).
  1194. Depending on which database you're using (e.g. PostgreSQL vs. MySQL),
  1195. ``count()`` may return a long integer instead of a normal Python integer. This
  1196. is an underlying implementation quirk that shouldn't pose any real-world
  1197. problems.
  1198. in_bulk
  1199. ~~~~~~~
  1200. .. method:: in_bulk(id_list)
  1201. Takes a list of primary-key values and returns a dictionary mapping each
  1202. primary-key value to an instance of the object with the given ID.
  1203. Example::
  1204. >>> Blog.objects.in_bulk([1])
  1205. {1: <Blog: Beatles Blog>}
  1206. >>> Blog.objects.in_bulk([1, 2])
  1207. {1: <Blog: Beatles Blog>, 2: <Blog: Cheddar Talk>}
  1208. >>> Blog.objects.in_bulk([])
  1209. {}
  1210. If you pass ``in_bulk()`` an empty list, you'll get an empty dictionary.
  1211. iterator
  1212. ~~~~~~~~
  1213. .. method:: iterator()
  1214. Evaluates the ``QuerySet`` (by performing the query) and returns an iterator
  1215. (see :pep:`234`) over the results. A ``QuerySet`` typically caches its results
  1216. internally so that repeated evaluations do not result in additional queries. In
  1217. contrast, ``iterator()`` will read results directly, without doing any caching
  1218. at the ``QuerySet`` level (internally, the default iterator calls ``iterator()``
  1219. and caches the return value). For a ``QuerySet`` which returns a large number of
  1220. objects that you only need to access once, this can result in better
  1221. performance and a significant reduction in memory.
  1222. Note that using ``iterator()`` on a ``QuerySet`` which has already been
  1223. evaluated will force it to evaluate again, repeating the query.
  1224. Also, use of ``iterator()`` causes previous ``prefetch_related()`` calls to be
  1225. ignored since these two optimizations do not make sense together.
  1226. .. warning::
  1227. Some Python database drivers like ``psycopg2`` perform caching if using
  1228. client side cursors (instantiated with ``connection.cursor()`` and what
  1229. Django's ORM uses). Using ``iterator()`` does not affect caching at the
  1230. database driver level. To disable this caching, look at `server side
  1231. cursors`_.
  1232. .. _server side cursors: http://initd.org/psycopg/docs/usage.html#server-side-cursors
  1233. latest
  1234. ~~~~~~
  1235. .. method:: latest(field_name=None)
  1236. Returns the latest object in the table, by date, using the ``field_name``
  1237. provided as the date field.
  1238. This example returns the latest ``Entry`` in the table, according to the
  1239. ``pub_date`` field::
  1240. Entry.objects.latest('pub_date')
  1241. If your model's :ref:`Meta <meta-options>` specifies
  1242. :attr:`~django.db.models.Options.get_latest_by`, you can leave off the
  1243. ``field_name`` argument to ``earliest()`` or ``latest()``. Django will use the
  1244. field specified in :attr:`~django.db.models.Options.get_latest_by` by default.
  1245. Like :meth:`get()`, ``earliest()`` and ``latest()`` raise
  1246. :exc:`~django.core.exceptions.DoesNotExist` if there is no object with the
  1247. given parameters.
  1248. Note that ``earliest()`` and ``latest()`` exist purely for convenience and
  1249. readability.
  1250. earliest
  1251. ~~~~~~~~
  1252. .. method:: earliest(field_name=None)
  1253. .. versionadded:: 1.6
  1254. Works otherwise like :meth:`~django.db.models.query.QuerySet.latest` except
  1255. the direction is changed.
  1256. first
  1257. ~~~~~
  1258. .. method:: first()
  1259. .. versionadded:: 1.6
  1260. Returns the first object matched by the queryset, or ``None`` if there
  1261. is no matching object. If the ``QuerySet`` has no ordering defined, then the
  1262. queryset is automatically ordered by the primary key.
  1263. Example::
  1264. p = Article.objects.order_by('title', 'pub_date').first()
  1265. Note that ``first()`` is a convenience method, the following code sample is
  1266. equivalent to the above example::
  1267. try:
  1268. p = Article.objects.order_by('title', 'pub_date')[0]
  1269. except IndexError:
  1270. p = None
  1271. last
  1272. ~~~~
  1273. .. method:: last()
  1274. .. versionadded:: 1.6
  1275. Works like :meth:`first()`, but returns the last object in the queryset.
  1276. aggregate
  1277. ~~~~~~~~~
  1278. .. method:: aggregate(*args, **kwargs)
  1279. Returns a dictionary of aggregate values (averages, sums, etc) calculated over
  1280. the ``QuerySet``. Each argument to ``aggregate()`` specifies a value that will
  1281. be included in the dictionary that is returned.
  1282. The aggregation functions that are provided by Django are described in
  1283. `Aggregation Functions`_ below.
  1284. Aggregates specified using keyword arguments will use the keyword as the name
  1285. for the annotation. Anonymous arguments will have a name generated for them
  1286. based upon the name of the aggregate function and the model field that is being
  1287. aggregated.
  1288. For example, when you are working with blog entries, you may want to know the
  1289. number of authors that have contributed blog entries::
  1290. >>> from django.db.models import Count
  1291. >>> q = Blog.objects.aggregate(Count('entry'))
  1292. {'entry__count': 16}
  1293. By using a keyword argument to specify the aggregate function, you can
  1294. control the name of the aggregation value that is returned::
  1295. >>> q = Blog.objects.aggregate(number_of_entries=Count('entry'))
  1296. {'number_of_entries': 16}
  1297. For an in-depth discussion of aggregation, see :doc:`the topic guide on
  1298. Aggregation </topics/db/aggregation>`.
  1299. exists
  1300. ~~~~~~
  1301. .. method:: exists()
  1302. Returns ``True`` if the :class:`.QuerySet` contains any results, and ``False``
  1303. if not. This tries to perform the query in the simplest and fastest way
  1304. possible, but it *does* execute nearly the same query as a normal
  1305. :class:`.QuerySet` query.
  1306. :meth:`~.QuerySet.exists` is useful for searches relating to both
  1307. object membership in a :class:`.QuerySet` and to the existence of any objects in
  1308. a :class:`.QuerySet`, particularly in the context of a large :class:`.QuerySet`.
  1309. The most efficient method of finding whether a model with a unique field
  1310. (e.g. ``primary_key``) is a member of a :class:`.QuerySet` is::
  1311. entry = Entry.objects.get(pk=123)
  1312. if some_queryset.filter(pk=entry.pk).exists():
  1313. print("Entry contained in queryset")
  1314. Which will be faster than the following which requires evaluating and iterating
  1315. through the entire queryset::
  1316. if entry in some_queryset:
  1317. print("Entry contained in QuerySet")
  1318. And to find whether a queryset contains any items::
  1319. if some_queryset.exists():
  1320. print("There is at least one object in some_queryset")
  1321. Which will be faster than::
  1322. if some_queryset:
  1323. print("There is at least one object in some_queryset")
  1324. ... but not by a large degree (hence needing a large queryset for efficiency
  1325. gains).
  1326. Additionally, if a ``some_queryset`` has not yet been evaluated, but you know
  1327. that it will be at some point, then using ``some_queryset.exists()`` will do
  1328. more overall work (one query for the existence check plus an extra one to later
  1329. retrieve the results) than simply using ``bool(some_queryset)``, which
  1330. retrieves the results and then checks if any were returned.
  1331. update
  1332. ~~~~~~
  1333. .. method:: update(**kwargs)
  1334. Performs an SQL update query for the specified fields, and returns
  1335. the number of rows matched (which may not be equal to the number of rows
  1336. updated if some rows already have the new value).
  1337. For example, to turn comments off for all blog entries published in 2010,
  1338. you could do this::
  1339. >>> Entry.objects.filter(pub_date__year=2010).update(comments_on=False)
  1340. (This assumes your ``Entry`` model has fields ``pub_date`` and ``comments_on``.)
  1341. You can update multiple fields — there's no limit on how many. For example,
  1342. here we update the ``comments_on`` and ``headline`` fields::
  1343. >>> Entry.objects.filter(pub_date__year=2010).update(comments_on=False, headline='This is old')
  1344. The ``update()`` method is applied instantly, and the only restriction on the
  1345. :class:`.QuerySet` that is updated is that it can only update columns in the
  1346. model's main table, not on related models. You can't do this, for example::
  1347. >>> Entry.objects.update(blog__name='foo') # Won't work!
  1348. Filtering based on related fields is still possible, though::
  1349. >>> Entry.objects.filter(blog__id=1).update(comments_on=True)
  1350. You cannot call ``update()`` on a :class:`.QuerySet` that has had a slice taken
  1351. or can otherwise no longer be filtered.
  1352. The ``update()`` method returns the number of affected rows::
  1353. >>> Entry.objects.filter(id=64).update(comments_on=True)
  1354. 1
  1355. >>> Entry.objects.filter(slug='nonexistent-slug').update(comments_on=True)
  1356. 0
  1357. >>> Entry.objects.filter(pub_date__year=2010).update(comments_on=False)
  1358. 132
  1359. If you're just updating a record and don't need to do anything with the model
  1360. object, the most efficient approach is to call ``update()``, rather than
  1361. loading the model object into memory. For example, instead of doing this::
  1362. e = Entry.objects.get(id=10)
  1363. e.comments_on = False
  1364. e.save()
  1365. ...do this::
  1366. Entry.objects.filter(id=10).update(comments_on=False)
  1367. Using ``update()`` also prevents a race condition wherein something might
  1368. change in your database in the short period of time between loading the object
  1369. and calling ``save()``.
  1370. Finally, realize that ``update()`` does an update at the SQL level and, thus,
  1371. does not call any ``save()`` methods on your models, nor does it emit the
  1372. :attr:`~django.db.models.signals.pre_save` or
  1373. :attr:`~django.db.models.signals.post_save` signals (which are a consequence of
  1374. calling :meth:`Model.save() <django.db.models.Model.save>`). If you want to
  1375. update a bunch of records for a model that has a custom
  1376. :meth:`~django.db.models.Model.save()` method, loop over them and call
  1377. :meth:`~django.db.models.Model.save()`, like this::
  1378. for e in Entry.objects.filter(pub_date__year=2010):
  1379. e.comments_on = False
  1380. e.save()
  1381. delete
  1382. ~~~~~~
  1383. .. method:: delete()
  1384. Performs an SQL delete query on all rows in the :class:`.QuerySet`. The
  1385. ``delete()`` is applied instantly. You cannot call ``delete()`` on a
  1386. :class:`.QuerySet` that has had a slice taken or can otherwise no longer be
  1387. filtered.
  1388. For example, to delete all the entries in a particular blog::
  1389. >>> b = Blog.objects.get(pk=1)
  1390. # Delete all the entries belonging to this Blog.
  1391. >>> Entry.objects.filter(blog=b).delete()
  1392. By default, Django's :class:`~django.db.models.ForeignKey` emulates the SQL
  1393. constraint ``ON DELETE CASCADE`` — in other words, any objects with foreign
  1394. keys pointing at the objects to be deleted will be deleted along with them.
  1395. For example::
  1396. blogs = Blog.objects.all()
  1397. # This will delete all Blogs and all of their Entry objects.
  1398. blogs.delete()
  1399. This cascade behavior is customizable via the
  1400. :attr:`~django.db.models.ForeignKey.on_delete` argument to the
  1401. :class:`~django.db.models.ForeignKey`.
  1402. The ``delete()`` method does a bulk delete and does not call any ``delete()``
  1403. methods on your models. It does, however, emit the
  1404. :data:`~django.db.models.signals.pre_delete` and
  1405. :data:`~django.db.models.signals.post_delete` signals for all deleted objects
  1406. (including cascaded deletions).
  1407. Django needs to fetch objects into memory to send signals and handle cascades.
  1408. However, if there are no cascades and no signals, then Django may take a
  1409. fast-path and delete objects without fetching into memory. For large
  1410. deletes this can result in significantly reduced memory usage. The amount of
  1411. executed queries can be reduced, too.
  1412. ForeignKeys which are set to :attr:`~django.db.models.ForeignKey.on_delete`
  1413. ``DO_NOTHING`` do not prevent taking the fast-path in deletion.
  1414. Note that the queries generated in object deletion is an implementation
  1415. detail subject to change.
  1416. as_manager
  1417. ~~~~~~~~~~
  1418. .. classmethod:: as_manager()
  1419. .. versionadded:: 1.7
  1420. Class method that returns an instance of :class:`~django.db.models.Manager`
  1421. with a copy of the ``QuerySet``’s methods. See
  1422. :ref:`create-manager-with-queryset-methods` for more details.
  1423. .. _field-lookups:
  1424. Field lookups
  1425. -------------
  1426. Field lookups are how you specify the meat of an SQL ``WHERE`` clause. They're
  1427. specified as keyword arguments to the ``QuerySet`` methods :meth:`filter()`,
  1428. :meth:`exclude()` and :meth:`get()`.
  1429. For an introduction, see :ref:`models and database queries documentation
  1430. <field-lookups-intro>`.
  1431. Django's inbuilt lookups are listed below. It is also possible to write
  1432. :doc:`custom lookups </ref/models/custom-lookups>` for model fields.
  1433. .. fieldlookup:: exact
  1434. exact
  1435. ~~~~~
  1436. Exact match. If the value provided for comparison is ``None``, it will be
  1437. interpreted as an SQL ``NULL`` (see :lookup:`isnull` for more details).
  1438. Examples::
  1439. Entry.objects.get(id__exact=14)
  1440. Entry.objects.get(id__exact=None)
  1441. SQL equivalents::
  1442. SELECT ... WHERE id = 14;
  1443. SELECT ... WHERE id IS NULL;
  1444. .. admonition:: MySQL comparisons
  1445. In MySQL, a database table's "collation" setting determines whether
  1446. ``exact`` comparisons are case-sensitive. This is a database setting, *not*
  1447. a Django setting. It's possible to configure your MySQL tables to use
  1448. case-sensitive comparisons, but some trade-offs are involved. For more
  1449. information about this, see the :ref:`collation section <mysql-collation>`
  1450. in the :doc:`databases </ref/databases>` documentation.
  1451. .. fieldlookup:: iexact
  1452. iexact
  1453. ~~~~~~
  1454. Case-insensitive exact match.
  1455. .. versionchanged:: 1.7
  1456. If the value provided for comparision is ``None``, it will be interpreted
  1457. as an SQL ``NULL`` (see :lookup:`isnull` for more details).
  1458. Example::
  1459. Blog.objects.get(name__iexact='beatles blog')
  1460. Blog.objects.get(name__iexact=None)
  1461. SQL equivalent::
  1462. SELECT ... WHERE name ILIKE 'beatles blog';
  1463. Note this will match ``'Beatles Blog'``, ``'beatles blog'``, ``'BeAtLes
  1464. BLoG'``, etc.
  1465. .. admonition:: SQLite users
  1466. When using the SQLite backend and Unicode (non-ASCII) strings, bear in
  1467. mind the :ref:`database note <sqlite-string-matching>` about string
  1468. comparisons. SQLite does not do case-insensitive matching for Unicode
  1469. strings.
  1470. .. fieldlookup:: contains
  1471. contains
  1472. ~~~~~~~~
  1473. Case-sensitive containment test.
  1474. Example::
  1475. Entry.objects.get(headline__contains='Lennon')
  1476. SQL equivalent::
  1477. SELECT ... WHERE headline LIKE '%Lennon%';
  1478. Note this will match the headline ``'Lennon honored today'`` but not ``'lennon
  1479. honored today'``.
  1480. .. admonition:: SQLite users
  1481. SQLite doesn't support case-sensitive ``LIKE`` statements; ``contains``
  1482. acts like ``icontains`` for SQLite. See the :ref:`database note
  1483. <sqlite-string-matching>` for more information.
  1484. .. fieldlookup:: icontains
  1485. icontains
  1486. ~~~~~~~~~
  1487. Case-insensitive containment test.
  1488. Example::
  1489. Entry.objects.get(headline__icontains='Lennon')
  1490. SQL equivalent::
  1491. SELECT ... WHERE headline ILIKE '%Lennon%';
  1492. .. admonition:: SQLite users
  1493. When using the SQLite backend and Unicode (non-ASCII) strings, bear in
  1494. mind the :ref:`database note <sqlite-string-matching>` about string
  1495. comparisons.
  1496. .. fieldlookup:: in
  1497. in
  1498. ~~
  1499. In a given list.
  1500. Example::
  1501. Entry.objects.filter(id__in=[1, 3, 4])
  1502. SQL equivalent::
  1503. SELECT ... WHERE id IN (1, 3, 4);
  1504. You can also use a queryset to dynamically evaluate the list of values
  1505. instead of providing a list of literal values::
  1506. inner_qs = Blog.objects.filter(name__contains='Cheddar')
  1507. entries = Entry.objects.filter(blog__in=inner_qs)
  1508. This queryset will be evaluated as subselect statement::
  1509. SELECT ... WHERE blog.id IN (SELECT id FROM ... WHERE NAME LIKE '%Cheddar%')
  1510. If you pass in a ``ValuesQuerySet`` or ``ValuesListQuerySet`` (the result of
  1511. calling ``values()`` or ``values_list()`` on a queryset) as the value to an
  1512. ``__in`` lookup, you need to ensure you are only extracting one field in the
  1513. result. For example, this will work (filtering on the blog names)::
  1514. inner_qs = Blog.objects.filter(name__contains='Ch').values('name')
  1515. entries = Entry.objects.filter(blog__name__in=inner_qs)
  1516. This example will raise an exception, since the inner query is trying to
  1517. extract two field values, where only one is expected::
  1518. # Bad code! Will raise a TypeError.
  1519. inner_qs = Blog.objects.filter(name__contains='Ch').values('name', 'id')
  1520. entries = Entry.objects.filter(blog__name__in=inner_qs)
  1521. .. _nested-queries-performance:
  1522. .. admonition:: Performance considerations
  1523. Be cautious about using nested queries and understand your database
  1524. server's performance characteristics (if in doubt, benchmark!). Some
  1525. database backends, most notably MySQL, don't optimize nested queries very
  1526. well. It is more efficient, in those cases, to extract a list of values
  1527. and then pass that into the second query. That is, execute two queries
  1528. instead of one::
  1529. values = Blog.objects.filter(
  1530. name__contains='Cheddar').values_list('pk', flat=True)
  1531. entries = Entry.objects.filter(blog__in=list(values))
  1532. Note the ``list()`` call around the Blog ``QuerySet`` to force execution of
  1533. the first query. Without it, a nested query would be executed, because
  1534. :ref:`querysets-are-lazy`.
  1535. .. fieldlookup:: gt
  1536. gt
  1537. ~~
  1538. Greater than.
  1539. Example::
  1540. Entry.objects.filter(id__gt=4)
  1541. SQL equivalent::
  1542. SELECT ... WHERE id > 4;
  1543. .. fieldlookup:: gte
  1544. gte
  1545. ~~~
  1546. Greater than or equal to.
  1547. .. fieldlookup:: lt
  1548. lt
  1549. ~~
  1550. Less than.
  1551. .. fieldlookup:: lte
  1552. lte
  1553. ~~~
  1554. Less than or equal to.
  1555. .. fieldlookup:: startswith
  1556. startswith
  1557. ~~~~~~~~~~
  1558. Case-sensitive starts-with.
  1559. Example::
  1560. Entry.objects.filter(headline__startswith='Will')
  1561. SQL equivalent::
  1562. SELECT ... WHERE headline LIKE 'Will%';
  1563. SQLite doesn't support case-sensitive ``LIKE`` statements; ``startswith`` acts
  1564. like ``istartswith`` for SQLite.
  1565. .. fieldlookup:: istartswith
  1566. istartswith
  1567. ~~~~~~~~~~~
  1568. Case-insensitive starts-with.
  1569. Example::
  1570. Entry.objects.filter(headline__istartswith='will')
  1571. SQL equivalent::
  1572. SELECT ... WHERE headline ILIKE 'Will%';
  1573. .. admonition:: SQLite users
  1574. When using the SQLite backend and Unicode (non-ASCII) strings, bear in
  1575. mind the :ref:`database note <sqlite-string-matching>` about string
  1576. comparisons.
  1577. .. fieldlookup:: endswith
  1578. endswith
  1579. ~~~~~~~~
  1580. Case-sensitive ends-with.
  1581. Example::
  1582. Entry.objects.filter(headline__endswith='cats')
  1583. SQL equivalent::
  1584. SELECT ... WHERE headline LIKE '%cats';
  1585. .. admonition:: SQLite users
  1586. SQLite doesn't support case-sensitive ``LIKE`` statements; ``endswith``
  1587. acts like ``iendswith`` for SQLite. Refer to the :ref:`database note
  1588. <sqlite-string-matching>` documentation for more.
  1589. .. fieldlookup:: iendswith
  1590. iendswith
  1591. ~~~~~~~~~
  1592. Case-insensitive ends-with.
  1593. Example::
  1594. Entry.objects.filter(headline__iendswith='will')
  1595. SQL equivalent::
  1596. SELECT ... WHERE headline ILIKE '%will'
  1597. .. admonition:: SQLite users
  1598. When using the SQLite backend and Unicode (non-ASCII) strings, bear in
  1599. mind the :ref:`database note <sqlite-string-matching>` about string
  1600. comparisons.
  1601. .. fieldlookup:: range
  1602. range
  1603. ~~~~~
  1604. Range test (inclusive).
  1605. Example::
  1606. import datetime
  1607. start_date = datetime.date(2005, 1, 1)
  1608. end_date = datetime.date(2005, 3, 31)
  1609. Entry.objects.filter(pub_date__range=(start_date, end_date))
  1610. SQL equivalent::
  1611. SELECT ... WHERE pub_date BETWEEN '2005-01-01' and '2005-03-31';
  1612. You can use ``range`` anywhere you can use ``BETWEEN`` in SQL — for dates,
  1613. numbers and even characters.
  1614. .. warning::
  1615. Filtering a ``DateTimeField`` with dates won't include items on the last
  1616. day, because the bounds are interpreted as "0am on the given date". If
  1617. ``pub_date`` was a ``DateTimeField``, the above expression would be turned
  1618. into this SQL::
  1619. SELECT ... WHERE pub_date BETWEEN '2005-01-01 00:00:00' and '2005-03-31 00:00:00';
  1620. Generally speaking, you can't mix dates and datetimes.
  1621. .. fieldlookup:: year
  1622. year
  1623. ~~~~
  1624. For date and datetime fields, an exact year match. Takes an integer year.
  1625. Example::
  1626. Entry.objects.filter(pub_date__year=2005)
  1627. SQL equivalent::
  1628. SELECT ... WHERE pub_date BETWEEN '2005-01-01' AND '2005-12-31';
  1629. (The exact SQL syntax varies for each database engine.)
  1630. When :setting:`USE_TZ` is ``True``, datetime fields are converted to the
  1631. current time zone before filtering.
  1632. .. fieldlookup:: month
  1633. month
  1634. ~~~~~
  1635. For date and datetime fields, an exact month match. Takes an integer 1
  1636. (January) through 12 (December).
  1637. Example::
  1638. Entry.objects.filter(pub_date__month=12)
  1639. SQL equivalent::
  1640. SELECT ... WHERE EXTRACT('month' FROM pub_date) = '12';
  1641. (The exact SQL syntax varies for each database engine.)
  1642. When :setting:`USE_TZ` is ``True``, datetime fields are converted to the
  1643. current time zone before filtering. This requires :ref:`time zone definitions
  1644. in the database <database-time-zone-definitions>`.
  1645. .. fieldlookup:: day
  1646. day
  1647. ~~~
  1648. For date and datetime fields, an exact day match. Takes an integer day.
  1649. Example::
  1650. Entry.objects.filter(pub_date__day=3)
  1651. SQL equivalent::
  1652. SELECT ... WHERE EXTRACT('day' FROM pub_date) = '3';
  1653. (The exact SQL syntax varies for each database engine.)
  1654. Note this will match any record with a pub_date on the third day of the month,
  1655. such as January 3, July 3, etc.
  1656. When :setting:`USE_TZ` is ``True``, datetime fields are converted to the
  1657. current time zone before filtering. This requires :ref:`time zone definitions
  1658. in the database <database-time-zone-definitions>`.
  1659. .. fieldlookup:: week_day
  1660. week_day
  1661. ~~~~~~~~
  1662. For date and datetime fields, a 'day of the week' match.
  1663. Takes an integer value representing the day of week from 1 (Sunday) to 7
  1664. (Saturday).
  1665. Example::
  1666. Entry.objects.filter(pub_date__week_day=2)
  1667. (No equivalent SQL code fragment is included for this lookup because
  1668. implementation of the relevant query varies among different database engines.)
  1669. Note this will match any record with a ``pub_date`` that falls on a Monday (day
  1670. 2 of the week), regardless of the month or year in which it occurs. Week days
  1671. are indexed with day 1 being Sunday and day 7 being Saturday.
  1672. When :setting:`USE_TZ` is ``True``, datetime fields are converted to the
  1673. current time zone before filtering. This requires :ref:`time zone definitions
  1674. in the database <database-time-zone-definitions>`.
  1675. .. fieldlookup:: hour
  1676. hour
  1677. ~~~~
  1678. .. versionadded:: 1.6
  1679. For datetime fields, an exact hour match. Takes an integer between 0 and 23.
  1680. Example::
  1681. Event.objects.filter(timestamp__hour=23)
  1682. SQL equivalent::
  1683. SELECT ... WHERE EXTRACT('hour' FROM timestamp) = '23';
  1684. (The exact SQL syntax varies for each database engine.)
  1685. When :setting:`USE_TZ` is ``True``, values are converted to the current time
  1686. zone before filtering.
  1687. .. fieldlookup:: minute
  1688. minute
  1689. ~~~~~~
  1690. .. versionadded:: 1.6
  1691. For datetime fields, an exact minute match. Takes an integer between 0 and 59.
  1692. Example::
  1693. Event.objects.filter(timestamp__minute=29)
  1694. SQL equivalent::
  1695. SELECT ... WHERE EXTRACT('minute' FROM timestamp) = '29';
  1696. (The exact SQL syntax varies for each database engine.)
  1697. When :setting:`USE_TZ` is ``True``, values are converted to the current time
  1698. zone before filtering.
  1699. .. fieldlookup:: second
  1700. second
  1701. ~~~~~~
  1702. .. versionadded:: 1.6
  1703. For datetime fields, an exact second match. Takes an integer between 0 and 59.
  1704. Example::
  1705. Event.objects.filter(timestamp__second=31)
  1706. SQL equivalent::
  1707. SELECT ... WHERE EXTRACT('second' FROM timestamp) = '31';
  1708. (The exact SQL syntax varies for each database engine.)
  1709. When :setting:`USE_TZ` is ``True``, values are converted to the current time
  1710. zone before filtering.
  1711. .. fieldlookup:: isnull
  1712. isnull
  1713. ~~~~~~
  1714. Takes either ``True`` or ``False``, which correspond to SQL queries of
  1715. ``IS NULL`` and ``IS NOT NULL``, respectively.
  1716. Example::
  1717. Entry.objects.filter(pub_date__isnull=True)
  1718. SQL equivalent::
  1719. SELECT ... WHERE pub_date IS NULL;
  1720. .. fieldlookup:: search
  1721. search
  1722. ~~~~~~
  1723. A boolean full-text search, taking advantage of full-text indexing. This is
  1724. like :lookup:`contains` but is significantly faster due to full-text indexing.
  1725. Example::
  1726. Entry.objects.filter(headline__search="+Django -jazz Python")
  1727. SQL equivalent::
  1728. SELECT ... WHERE MATCH(tablename, headline) AGAINST (+Django -jazz Python IN BOOLEAN MODE);
  1729. Note this is only available in MySQL and requires direct manipulation of the
  1730. database to add the full-text index. By default Django uses BOOLEAN MODE for
  1731. full text searches. See the `MySQL documentation`_ for additional details.
  1732. .. _MySQL documentation: http://dev.mysql.com/doc/refman/5.1/en/fulltext-boolean.html
  1733. .. fieldlookup:: regex
  1734. regex
  1735. ~~~~~
  1736. Case-sensitive regular expression match.
  1737. The regular expression syntax is that of the database backend in use.
  1738. In the case of SQLite, which has no built in regular expression support,
  1739. this feature is provided by a (Python) user-defined REGEXP function, and
  1740. the regular expression syntax is therefore that of Python's ``re`` module.
  1741. Example::
  1742. Entry.objects.get(title__regex=r'^(An?|The) +')
  1743. SQL equivalents::
  1744. SELECT ... WHERE title REGEXP BINARY '^(An?|The) +'; -- MySQL
  1745. SELECT ... WHERE REGEXP_LIKE(title, '^(an?|the) +', 'c'); -- Oracle
  1746. SELECT ... WHERE title ~ '^(An?|The) +'; -- PostgreSQL
  1747. SELECT ... WHERE title REGEXP '^(An?|The) +'; -- SQLite
  1748. Using raw strings (e.g., ``r'foo'`` instead of ``'foo'``) for passing in the
  1749. regular expression syntax is recommended.
  1750. .. fieldlookup:: iregex
  1751. iregex
  1752. ~~~~~~
  1753. Case-insensitive regular expression match.
  1754. Example::
  1755. Entry.objects.get(title__iregex=r'^(an?|the) +')
  1756. SQL equivalents::
  1757. SELECT ... WHERE title REGEXP '^(an?|the) +'; -- MySQL
  1758. SELECT ... WHERE REGEXP_LIKE(title, '^(an?|the) +', 'i'); -- Oracle
  1759. SELECT ... WHERE title ~* '^(an?|the) +'; -- PostgreSQL
  1760. SELECT ... WHERE title REGEXP '(?i)^(an?|the) +'; -- SQLite
  1761. .. _aggregation-functions:
  1762. Aggregation functions
  1763. ---------------------
  1764. .. currentmodule:: django.db.models
  1765. Django provides the following aggregation functions in the
  1766. ``django.db.models`` module. For details on how to use these
  1767. aggregate functions, see
  1768. :doc:`the topic guide on aggregation </topics/db/aggregation>`.
  1769. .. warning::
  1770. SQLite can't handle aggregation on date/time fields out of the box.
  1771. This is because there are no native date/time fields in SQLite and Django
  1772. currently emulates these features using a text field. Attempts to use
  1773. aggregation on date/time fields in SQLite will raise
  1774. ``NotImplementedError``.
  1775. Avg
  1776. ~~~
  1777. .. class:: Avg(field)
  1778. Returns the mean value of the given field, which must be numeric.
  1779. * Default alias: ``<field>__avg``
  1780. * Return type: ``float``
  1781. Count
  1782. ~~~~~
  1783. .. class:: Count(field, distinct=False)
  1784. Returns the number of objects that are related through the provided field.
  1785. * Default alias: ``<field>__count``
  1786. * Return type: ``int``
  1787. Has one optional argument:
  1788. .. attribute:: distinct
  1789. If ``distinct=True``, the count will only include unique instances.
  1790. This is the SQL equivalent of ``COUNT(DISTINCT <field>)``. The default
  1791. value is ``False``.
  1792. Max
  1793. ~~~
  1794. .. class:: Max(field)
  1795. Returns the maximum value of the given field.
  1796. * Default alias: ``<field>__max``
  1797. * Return type: same as input field
  1798. Min
  1799. ~~~
  1800. .. class:: Min(field)
  1801. Returns the minimum value of the given field.
  1802. * Default alias: ``<field>__min``
  1803. * Return type: same as input field
  1804. StdDev
  1805. ~~~~~~
  1806. .. class:: StdDev(field, sample=False)
  1807. Returns the standard deviation of the data in the provided field.
  1808. * Default alias: ``<field>__stddev``
  1809. * Return type: ``float``
  1810. Has one optional argument:
  1811. .. attribute:: sample
  1812. By default, ``StdDev`` returns the population standard deviation. However,
  1813. if ``sample=True``, the return value will be the sample standard deviation.
  1814. .. admonition:: SQLite
  1815. SQLite doesn't provide ``StdDev`` out of the box. An implementation
  1816. is available as an extension module for SQLite. Consult the `SQlite
  1817. documentation`_ for instructions on obtaining and installing this
  1818. extension.
  1819. Sum
  1820. ~~~
  1821. .. class:: Sum(field)
  1822. Computes the sum of all values of the given field.
  1823. * Default alias: ``<field>__sum``
  1824. * Return type: same as input field
  1825. Variance
  1826. ~~~~~~~~
  1827. .. class:: Variance(field, sample=False)
  1828. Returns the variance of the data in the provided field.
  1829. * Default alias: ``<field>__variance``
  1830. * Return type: ``float``
  1831. Has one optional argument:
  1832. .. attribute:: sample
  1833. By default, ``Variance`` returns the population variance. However,
  1834. if ``sample=True``, the return value will be the sample variance.
  1835. .. admonition:: SQLite
  1836. SQLite doesn't provide ``Variance`` out of the box. An implementation
  1837. is available as an extension module for SQLite. Consult the `SQlite
  1838. documentation`_ for instructions on obtaining and installing this
  1839. extension.
  1840. .. _SQLite documentation: http://www.sqlite.org/contrib