querysets.txt 107 KB

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