querysets.txt 95 KB

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