queries.txt 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671
  1. ==============
  2. Making queries
  3. ==============
  4. .. currentmodule:: django.db.models
  5. Once you've created your :doc:`data models </topics/db/models>`, Django
  6. automatically gives you a database-abstraction API that lets you create,
  7. retrieve, update and delete objects. This document explains how to use this
  8. API. Refer to the :doc:`data model reference </ref/models/index>` for full
  9. details of all the various model lookup options.
  10. Throughout this guide (and in the reference), we'll refer to the following
  11. models, which comprise a blog application:
  12. .. _queryset-model-example:
  13. .. code-block:: python
  14. from datetime import date
  15. from django.db import models
  16. class Blog(models.Model):
  17. name = models.CharField(max_length=100)
  18. tagline = models.TextField()
  19. def __str__(self):
  20. return self.name
  21. class Author(models.Model):
  22. name = models.CharField(max_length=200)
  23. email = models.EmailField()
  24. def __str__(self):
  25. return self.name
  26. class Entry(models.Model):
  27. blog = models.ForeignKey(Blog, on_delete=models.CASCADE)
  28. headline = models.CharField(max_length=255)
  29. body_text = models.TextField()
  30. pub_date = models.DateField()
  31. mod_date = models.DateField(default=date.today)
  32. authors = models.ManyToManyField(Author)
  33. number_of_comments = models.IntegerField(default=0)
  34. number_of_pingbacks = models.IntegerField(default=0)
  35. rating = models.IntegerField(default=5)
  36. def __str__(self):
  37. return self.headline
  38. Creating objects
  39. ================
  40. To represent database-table data in Python objects, Django uses an intuitive
  41. system: A model class represents a database table, and an instance of that
  42. class represents a particular record in the database table.
  43. To create an object, instantiate it using keyword arguments to the model class,
  44. then call :meth:`~django.db.models.Model.save` to save it to the database.
  45. Assuming models live in a file ``mysite/blog/models.py``, here's an example::
  46. >>> from blog.models import Blog
  47. >>> b = Blog(name='Beatles Blog', tagline='All the latest Beatles news.')
  48. >>> b.save()
  49. This performs an ``INSERT`` SQL statement behind the scenes. Django doesn't hit
  50. the database until you explicitly call :meth:`~django.db.models.Model.save`.
  51. The :meth:`~django.db.models.Model.save` method has no return value.
  52. .. seealso::
  53. :meth:`~django.db.models.Model.save` takes a number of advanced options not
  54. described here. See the documentation for
  55. :meth:`~django.db.models.Model.save` for complete details.
  56. To create and save an object in a single step, use the
  57. :meth:`~django.db.models.query.QuerySet.create()` method.
  58. Saving changes to objects
  59. =========================
  60. To save changes to an object that's already in the database, use
  61. :meth:`~django.db.models.Model.save`.
  62. Given a ``Blog`` instance ``b5`` that has already been saved to the database,
  63. this example changes its name and updates its record in the database::
  64. >>> b5.name = 'New name'
  65. >>> b5.save()
  66. This performs an ``UPDATE`` SQL statement behind the scenes. Django doesn't hit
  67. the database until you explicitly call :meth:`~django.db.models.Model.save`.
  68. Saving ``ForeignKey`` and ``ManyToManyField`` fields
  69. ----------------------------------------------------
  70. Updating a :class:`~django.db.models.ForeignKey` field works exactly the same
  71. way as saving a normal field -- assign an object of the right type to the field
  72. in question. This example updates the ``blog`` attribute of an ``Entry``
  73. instance ``entry``, assuming appropriate instances of ``Entry`` and ``Blog``
  74. are already saved to the database (so we can retrieve them below)::
  75. >>> from blog.models import Blog, Entry
  76. >>> entry = Entry.objects.get(pk=1)
  77. >>> cheese_blog = Blog.objects.get(name="Cheddar Talk")
  78. >>> entry.blog = cheese_blog
  79. >>> entry.save()
  80. Updating a :class:`~django.db.models.ManyToManyField` works a little
  81. differently -- use the
  82. :meth:`~django.db.models.fields.related.RelatedManager.add` method on the field
  83. to add a record to the relation. This example adds the ``Author`` instance
  84. ``joe`` to the ``entry`` object::
  85. >>> from blog.models import Author
  86. >>> joe = Author.objects.create(name="Joe")
  87. >>> entry.authors.add(joe)
  88. To add multiple records to a :class:`~django.db.models.ManyToManyField` in one
  89. go, include multiple arguments in the call to
  90. :meth:`~django.db.models.fields.related.RelatedManager.add`, like this::
  91. >>> john = Author.objects.create(name="John")
  92. >>> paul = Author.objects.create(name="Paul")
  93. >>> george = Author.objects.create(name="George")
  94. >>> ringo = Author.objects.create(name="Ringo")
  95. >>> entry.authors.add(john, paul, george, ringo)
  96. Django will complain if you try to assign or add an object of the wrong type.
  97. .. _retrieving-objects:
  98. Retrieving objects
  99. ==================
  100. To retrieve objects from your database, construct a
  101. :class:`~django.db.models.query.QuerySet` via a
  102. :class:`~django.db.models.Manager` on your model class.
  103. A :class:`~django.db.models.query.QuerySet` represents a collection of objects
  104. from your database. It can have zero, one or many *filters*. Filters narrow
  105. down the query results based on the given parameters. In SQL terms, a
  106. :class:`~django.db.models.query.QuerySet` equates to a ``SELECT`` statement,
  107. and a filter is a limiting clause such as ``WHERE`` or ``LIMIT``.
  108. You get a :class:`~django.db.models.query.QuerySet` by using your model's
  109. :class:`~django.db.models.Manager`. Each model has at least one
  110. :class:`~django.db.models.Manager`, and it's called
  111. :attr:`~django.db.models.Model.objects` by default. Access it directly via the
  112. model class, like so::
  113. >>> Blog.objects
  114. <django.db.models.manager.Manager object at ...>
  115. >>> b = Blog(name='Foo', tagline='Bar')
  116. >>> b.objects
  117. Traceback:
  118. ...
  119. AttributeError: "Manager isn't accessible via Blog instances."
  120. .. note::
  121. ``Managers`` are accessible only via model classes, rather than from model
  122. instances, to enforce a separation between "table-level" operations and
  123. "record-level" operations.
  124. The :class:`~django.db.models.Manager` is the main source of ``QuerySets`` for
  125. a model. For example, ``Blog.objects.all()`` returns a
  126. :class:`~django.db.models.query.QuerySet` that contains all ``Blog`` objects in
  127. the database.
  128. Retrieving all objects
  129. ----------------------
  130. The simplest way to retrieve objects from a table is to get all of them. To do
  131. this, use the :meth:`~django.db.models.query.QuerySet.all` method on a
  132. :class:`~django.db.models.Manager`::
  133. >>> all_entries = Entry.objects.all()
  134. The :meth:`~django.db.models.query.QuerySet.all` method returns a
  135. :class:`~django.db.models.query.QuerySet` of all the objects in the database.
  136. Retrieving specific objects with filters
  137. ----------------------------------------
  138. The :class:`~django.db.models.query.QuerySet` returned by
  139. :meth:`~django.db.models.query.QuerySet.all` describes all objects in the
  140. database table. Usually, though, you'll need to select only a subset of the
  141. complete set of objects.
  142. To create such a subset, you refine the initial
  143. :class:`~django.db.models.query.QuerySet`, adding filter conditions. The two
  144. most common ways to refine a :class:`~django.db.models.query.QuerySet` are:
  145. ``filter(**kwargs)``
  146. Returns a new :class:`~django.db.models.query.QuerySet` containing objects
  147. that match the given lookup parameters.
  148. ``exclude(**kwargs)``
  149. Returns a new :class:`~django.db.models.query.QuerySet` containing objects
  150. that do *not* match the given lookup parameters.
  151. The lookup parameters (``**kwargs`` in the above function definitions) should
  152. be in the format described in `Field lookups`_ below.
  153. For example, to get a :class:`~django.db.models.query.QuerySet` of blog entries
  154. from the year 2006, use :meth:`~django.db.models.query.QuerySet.filter` like
  155. so::
  156. Entry.objects.filter(pub_date__year=2006)
  157. With the default manager class, it is the same as::
  158. Entry.objects.all().filter(pub_date__year=2006)
  159. .. _chaining-filters:
  160. Chaining filters
  161. ~~~~~~~~~~~~~~~~
  162. The result of refining a :class:`~django.db.models.query.QuerySet` is itself a
  163. :class:`~django.db.models.query.QuerySet`, so it's possible to chain
  164. refinements together. For example::
  165. >>> Entry.objects.filter(
  166. ... headline__startswith='What'
  167. ... ).exclude(
  168. ... pub_date__gte=datetime.date.today()
  169. ... ).filter(
  170. ... pub_date__gte=datetime.date(2005, 1, 30)
  171. ... )
  172. This takes the initial :class:`~django.db.models.query.QuerySet` of all entries
  173. in the database, adds a filter, then an exclusion, then another filter. The
  174. final result is a :class:`~django.db.models.query.QuerySet` containing all
  175. entries with a headline that starts with "What", that were published between
  176. January 30, 2005, and the current day.
  177. .. _filtered-querysets-are-unique:
  178. Filtered ``QuerySet``\s are unique
  179. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  180. Each time you refine a :class:`~django.db.models.query.QuerySet`, you get a
  181. brand-new :class:`~django.db.models.query.QuerySet` that is in no way bound to
  182. the previous :class:`~django.db.models.query.QuerySet`. Each refinement creates
  183. a separate and distinct :class:`~django.db.models.query.QuerySet` that can be
  184. stored, used and reused.
  185. Example::
  186. >>> q1 = Entry.objects.filter(headline__startswith="What")
  187. >>> q2 = q1.exclude(pub_date__gte=datetime.date.today())
  188. >>> q3 = q1.filter(pub_date__gte=datetime.date.today())
  189. These three ``QuerySets`` are separate. The first is a base
  190. :class:`~django.db.models.query.QuerySet` containing all entries that contain a
  191. headline starting with "What". The second is a subset of the first, with an
  192. additional criteria that excludes records whose ``pub_date`` is today or in the
  193. future. The third is a subset of the first, with an additional criteria that
  194. selects only the records whose ``pub_date`` is today or in the future. The
  195. initial :class:`~django.db.models.query.QuerySet` (``q1``) is unaffected by the
  196. refinement process.
  197. .. _querysets-are-lazy:
  198. ``QuerySet``\s are lazy
  199. ~~~~~~~~~~~~~~~~~~~~~~~
  200. ``QuerySets`` are lazy -- the act of creating a
  201. :class:`~django.db.models.query.QuerySet` doesn't involve any database
  202. activity. You can stack filters together all day long, and Django won't
  203. actually run the query until the :class:`~django.db.models.query.QuerySet` is
  204. *evaluated*. Take a look at this example::
  205. >>> q = Entry.objects.filter(headline__startswith="What")
  206. >>> q = q.filter(pub_date__lte=datetime.date.today())
  207. >>> q = q.exclude(body_text__icontains="food")
  208. >>> print(q)
  209. Though this looks like three database hits, in fact it hits the database only
  210. once, at the last line (``print(q)``). In general, the results of a
  211. :class:`~django.db.models.query.QuerySet` aren't fetched from the database
  212. until you "ask" for them. When you do, the
  213. :class:`~django.db.models.query.QuerySet` is *evaluated* by accessing the
  214. database. For more details on exactly when evaluation takes place, see
  215. :ref:`when-querysets-are-evaluated`.
  216. .. _retrieving-single-object-with-get:
  217. Retrieving a single object with ``get()``
  218. -----------------------------------------
  219. :meth:`~django.db.models.query.QuerySet.filter` will always give you a
  220. :class:`~django.db.models.query.QuerySet`, even if only a single object matches
  221. the query - in this case, it will be a
  222. :class:`~django.db.models.query.QuerySet` containing a single element.
  223. If you know there is only one object that matches your query, you can use the
  224. :meth:`~django.db.models.query.QuerySet.get` method on a
  225. :class:`~django.db.models.Manager` which returns the object directly::
  226. >>> one_entry = Entry.objects.get(pk=1)
  227. You can use any query expression with
  228. :meth:`~django.db.models.query.QuerySet.get`, just like with
  229. :meth:`~django.db.models.query.QuerySet.filter` - again, see `Field lookups`_
  230. below.
  231. Note that there is a difference between using
  232. :meth:`~django.db.models.query.QuerySet.get`, and using
  233. :meth:`~django.db.models.query.QuerySet.filter` with a slice of ``[0]``. If
  234. there are no results that match the query,
  235. :meth:`~django.db.models.query.QuerySet.get` will raise a ``DoesNotExist``
  236. exception. This exception is an attribute of the model class that the query is
  237. being performed on - so in the code above, if there is no ``Entry`` object with
  238. a primary key of 1, Django will raise ``Entry.DoesNotExist``.
  239. Similarly, Django will complain if more than one item matches the
  240. :meth:`~django.db.models.query.QuerySet.get` query. In this case, it will raise
  241. :exc:`~django.core.exceptions.MultipleObjectsReturned`, which again is an
  242. attribute of the model class itself.
  243. Other ``QuerySet`` methods
  244. --------------------------
  245. Most of the time you'll use :meth:`~django.db.models.query.QuerySet.all`,
  246. :meth:`~django.db.models.query.QuerySet.get`,
  247. :meth:`~django.db.models.query.QuerySet.filter` and
  248. :meth:`~django.db.models.query.QuerySet.exclude` when you need to look up
  249. objects from the database. However, that's far from all there is; see the
  250. :ref:`QuerySet API Reference <queryset-api>` for a complete list of all the
  251. various :class:`~django.db.models.query.QuerySet` methods.
  252. .. _limiting-querysets:
  253. Limiting ``QuerySet``\s
  254. -----------------------
  255. Use a subset of Python's array-slicing syntax to limit your
  256. :class:`~django.db.models.query.QuerySet` to a certain number of results. This
  257. is the equivalent of SQL's ``LIMIT`` and ``OFFSET`` clauses.
  258. For example, this returns the first 5 objects (``LIMIT 5``)::
  259. >>> Entry.objects.all()[:5]
  260. This returns the sixth through tenth objects (``OFFSET 5 LIMIT 5``)::
  261. >>> Entry.objects.all()[5:10]
  262. Negative indexing (i.e. ``Entry.objects.all()[-1]``) is not supported.
  263. Generally, slicing a :class:`~django.db.models.query.QuerySet` returns a new
  264. :class:`~django.db.models.query.QuerySet` -- it doesn't evaluate the query. An
  265. exception is if you use the "step" parameter of Python slice syntax. For
  266. example, this would actually execute the query in order to return a list of
  267. every *second* object of the first 10::
  268. >>> Entry.objects.all()[:10:2]
  269. Further filtering or ordering of a sliced queryset is prohibited due to the
  270. ambiguous nature of how that might work.
  271. To retrieve a *single* object rather than a list
  272. (e.g. ``SELECT foo FROM bar LIMIT 1``), use an index instead of a slice. For
  273. example, this returns the first ``Entry`` in the database, after ordering
  274. entries alphabetically by headline::
  275. >>> Entry.objects.order_by('headline')[0]
  276. This is roughly equivalent to::
  277. >>> Entry.objects.order_by('headline')[0:1].get()
  278. Note, however, that the first of these will raise ``IndexError`` while the
  279. second will raise ``DoesNotExist`` if no objects match the given criteria. See
  280. :meth:`~django.db.models.query.QuerySet.get` for more details.
  281. .. _field-lookups-intro:
  282. Field lookups
  283. -------------
  284. Field lookups are how you specify the meat of an SQL ``WHERE`` clause. They're
  285. specified as keyword arguments to the :class:`~django.db.models.query.QuerySet`
  286. methods :meth:`~django.db.models.query.QuerySet.filter`,
  287. :meth:`~django.db.models.query.QuerySet.exclude` and
  288. :meth:`~django.db.models.query.QuerySet.get`.
  289. Basic lookups keyword arguments take the form ``field__lookuptype=value``.
  290. (That's a double-underscore). For example::
  291. >>> Entry.objects.filter(pub_date__lte='2006-01-01')
  292. translates (roughly) into the following SQL:
  293. .. code-block:: sql
  294. SELECT * FROM blog_entry WHERE pub_date <= '2006-01-01';
  295. .. admonition:: How this is possible
  296. Python has the ability to define functions that accept arbitrary name-value
  297. arguments whose names and values are evaluated at runtime. For more
  298. information, see :ref:`tut-keywordargs` in the official Python tutorial.
  299. The field specified in a lookup has to be the name of a model field. There's
  300. one exception though, in case of a :class:`~django.db.models.ForeignKey` you
  301. can specify the field name suffixed with ``_id``. In this case, the value
  302. parameter is expected to contain the raw value of the foreign model's primary
  303. key. For example:
  304. >>> Entry.objects.filter(blog_id=4)
  305. If you pass an invalid keyword argument, a lookup function will raise
  306. ``TypeError``.
  307. The database API supports about two dozen lookup types; a complete reference
  308. can be found in the :ref:`field lookup reference <field-lookups>`. To give you
  309. a taste of what's available, here's some of the more common lookups you'll
  310. probably use:
  311. :lookup:`exact`
  312. An "exact" match. For example::
  313. >>> Entry.objects.get(headline__exact="Cat bites dog")
  314. Would generate SQL along these lines:
  315. .. code-block:: sql
  316. SELECT ... WHERE headline = 'Cat bites dog';
  317. If you don't provide a lookup type -- that is, if your keyword argument
  318. doesn't contain a double underscore -- the lookup type is assumed to be
  319. ``exact``.
  320. For example, the following two statements are equivalent::
  321. >>> Blog.objects.get(id__exact=14) # Explicit form
  322. >>> Blog.objects.get(id=14) # __exact is implied
  323. This is for convenience, because ``exact`` lookups are the common case.
  324. :lookup:`iexact`
  325. A case-insensitive match. So, the query::
  326. >>> Blog.objects.get(name__iexact="beatles blog")
  327. Would match a ``Blog`` titled ``"Beatles Blog"``, ``"beatles blog"``, or
  328. even ``"BeAtlES blOG"``.
  329. :lookup:`contains`
  330. Case-sensitive containment test. For example::
  331. Entry.objects.get(headline__contains='Lennon')
  332. Roughly translates to this SQL:
  333. .. code-block:: sql
  334. SELECT ... WHERE headline LIKE '%Lennon%';
  335. Note this will match the headline ``'Today Lennon honored'`` but not
  336. ``'today lennon honored'``.
  337. There's also a case-insensitive version, :lookup:`icontains`.
  338. :lookup:`startswith`, :lookup:`endswith`
  339. Starts-with and ends-with search, respectively. There are also
  340. case-insensitive versions called :lookup:`istartswith` and
  341. :lookup:`iendswith`.
  342. Again, this only scratches the surface. A complete reference can be found in the
  343. :ref:`field lookup reference <field-lookups>`.
  344. .. _lookups-that-span-relationships:
  345. Lookups that span relationships
  346. -------------------------------
  347. Django offers a powerful and intuitive way to "follow" relationships in
  348. lookups, taking care of the SQL ``JOIN``\s for you automatically, behind the
  349. scenes. To span a relationship, use the field name of related fields
  350. across models, separated by double underscores, until you get to the field you
  351. want.
  352. This example retrieves all ``Entry`` objects with a ``Blog`` whose ``name``
  353. is ``'Beatles Blog'``::
  354. >>> Entry.objects.filter(blog__name='Beatles Blog')
  355. This spanning can be as deep as you'd like.
  356. It works backwards, too. While it :attr:`can be customized
  357. <.ForeignKey.related_query_name>`, by default you refer to a "reverse"
  358. relationship in a lookup using the lowercase name of the model.
  359. This example retrieves all ``Blog`` objects which have at least one ``Entry``
  360. whose ``headline`` contains ``'Lennon'``::
  361. >>> Blog.objects.filter(entry__headline__contains='Lennon')
  362. If you are filtering across multiple relationships and one of the intermediate
  363. models doesn't have a value that meets the filter condition, Django will treat
  364. it as if there is an empty (all values are ``NULL``), but valid, object there.
  365. All this means is that no error will be raised. For example, in this filter::
  366. Blog.objects.filter(entry__authors__name='Lennon')
  367. (if there was a related ``Author`` model), if there was no ``author``
  368. associated with an entry, it would be treated as if there was also no ``name``
  369. attached, rather than raising an error because of the missing ``author``.
  370. Usually this is exactly what you want to have happen. The only case where it
  371. might be confusing is if you are using :lookup:`isnull`. Thus::
  372. Blog.objects.filter(entry__authors__name__isnull=True)
  373. will return ``Blog`` objects that have an empty ``name`` on the ``author`` and
  374. also those which have an empty ``author`` on the ``entry``. If you don't want
  375. those latter objects, you could write::
  376. Blog.objects.filter(entry__authors__isnull=False, entry__authors__name__isnull=True)
  377. .. _spanning-multi-valued-relationships:
  378. Spanning multi-valued relationships
  379. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  380. When spanning a :class:`~django.db.models.ManyToManyField` or a reverse
  381. :class:`~django.db.models.ForeignKey` (such as from ``Blog`` to ``Entry``),
  382. filtering on multiple attributes raises the question of whether to require each
  383. attribute to coincide in the same related object. We might seek blogs that have
  384. an entry from 2008 with *“Lennon”* in its headline, or we might seek blogs that
  385. merely have any entry from 2008 as well as some newer or older entry with
  386. *“Lennon”* in its headline.
  387. To select all blogs containing at least one entry from 2008 having *"Lennon"*
  388. in its headline (the same entry satisfying both conditions), we would write::
  389. Blog.objects.filter(entry__headline__contains='Lennon', entry__pub_date__year=2008)
  390. Otherwise, to perform a more permissive query selecting any blogs with merely
  391. *some* entry with *"Lennon"* in its headline and *some* entry from 2008, we
  392. would write::
  393. Blog.objects.filter(entry__headline__contains='Lennon').filter(entry__pub_date__year=2008)
  394. Suppose there is only one blog that has both entries containing *"Lennon"* and
  395. entries from 2008, but that none of the entries from 2008 contained *"Lennon"*.
  396. The first query would not return any blogs, but the second query would return
  397. that one blog. (This is because the entries selected by the second filter may
  398. or may not be the same as the entries in the first filter. We are filtering the
  399. ``Blog`` items with each filter statement, not the ``Entry`` items.) In short,
  400. if each condition needs to match the same related object, then each should be
  401. contained in a single :meth:`~django.db.models.query.QuerySet.filter` call.
  402. .. note::
  403. As the second (more permissive) query chains multiple filters, it performs
  404. multiple joins to the primary model, potentially yielding duplicates.
  405. >>> from datetime import date
  406. >>> beatles = Blog.objects.create(name='Beatles Blog')
  407. >>> pop = Blog.objects.create(name='Pop Music Blog')
  408. >>> Entry.objects.create(
  409. ... blog=beatles,
  410. ... headline='New Lennon Biography',
  411. ... pub_date=date(2008, 6, 1),
  412. ... )
  413. <Entry: New Lennon Biography>
  414. >>> Entry.objects.create(
  415. ... blog=beatles,
  416. ... headline='New Lennon Biography in Paperback',
  417. ... pub_date=date(2009, 6, 1),
  418. ... )
  419. <Entry: New Lennon Biography in Paperback>
  420. >>> Entry.objects.create(
  421. ... blog=pop,
  422. ... headline='Best Albums of 2008',
  423. ... pub_date=date(2008, 12, 15),
  424. ... )
  425. <Entry: Best Albums of 2008>
  426. >>> Entry.objects.create(
  427. ... blog=pop,
  428. ... headline='Lennon Would Have Loved Hip Hop',
  429. ... pub_date=date(2020, 4, 1),
  430. ... )
  431. <Entry: Lennon Would Have Loved Hip Hop>
  432. >>> Blog.objects.filter(
  433. ... entry__headline__contains='Lennon',
  434. ... entry__pub_date__year=2008,
  435. ... )
  436. <QuerySet [<Blog: Beatles Blog>]>
  437. >>> Blog.objects.filter(
  438. ... entry__headline__contains='Lennon',
  439. ... ).filter(
  440. ... entry__pub_date__year=2008,
  441. ... )
  442. <QuerySet [<Blog: Beatles Blog>, <Blog: Beatles Blog>, <Blog: Pop Music Blog]>
  443. .. note::
  444. The behavior of :meth:`~django.db.models.query.QuerySet.filter` for queries
  445. that span multi-value relationships, as described above, is not implemented
  446. equivalently for :meth:`~django.db.models.query.QuerySet.exclude`. Instead,
  447. the conditions in a single :meth:`~django.db.models.query.QuerySet.exclude`
  448. call will not necessarily refer to the same item.
  449. For example, the following query would exclude blogs that contain *both*
  450. entries with *"Lennon"* in the headline *and* entries published in 2008::
  451. Blog.objects.exclude(
  452. entry__headline__contains='Lennon',
  453. entry__pub_date__year=2008,
  454. )
  455. However, unlike the behavior when using
  456. :meth:`~django.db.models.query.QuerySet.filter`, this will not limit blogs
  457. based on entries that satisfy both conditions. In order to do that, i.e.
  458. to select all blogs that do not contain entries published with *"Lennon"*
  459. that were published in 2008, you need to make two queries::
  460. Blog.objects.exclude(
  461. entry__in=Entry.objects.filter(
  462. headline__contains='Lennon',
  463. pub_date__year=2008,
  464. ),
  465. )
  466. .. _using-f-expressions-in-filters:
  467. Filters can reference fields on the model
  468. -----------------------------------------
  469. In the examples given so far, we have constructed filters that compare
  470. the value of a model field with a constant. But what if you want to compare
  471. the value of a model field with another field on the same model?
  472. Django provides :class:`F expressions <django.db.models.F>` to allow such
  473. comparisons. Instances of ``F()`` act as a reference to a model field within a
  474. query. These references can then be used in query filters to compare the values
  475. of two different fields on the same model instance.
  476. For example, to find a list of all blog entries that have had more comments
  477. than pingbacks, we construct an ``F()`` object to reference the pingback count,
  478. and use that ``F()`` object in the query::
  479. >>> from django.db.models import F
  480. >>> Entry.objects.filter(number_of_comments__gt=F('number_of_pingbacks'))
  481. Django supports the use of addition, subtraction, multiplication,
  482. division, modulo, and power arithmetic with ``F()`` objects, both with constants
  483. and with other ``F()`` objects. To find all the blog entries with more than
  484. *twice* as many comments as pingbacks, we modify the query::
  485. >>> Entry.objects.filter(number_of_comments__gt=F('number_of_pingbacks') * 2)
  486. To find all the entries where the rating of the entry is less than the
  487. sum of the pingback count and comment count, we would issue the
  488. query::
  489. >>> Entry.objects.filter(rating__lt=F('number_of_comments') + F('number_of_pingbacks'))
  490. You can also use the double underscore notation to span relationships in
  491. an ``F()`` object. An ``F()`` object with a double underscore will introduce
  492. any joins needed to access the related object. For example, to retrieve all
  493. the entries where the author's name is the same as the blog name, we could
  494. issue the query::
  495. >>> Entry.objects.filter(authors__name=F('blog__name'))
  496. For date and date/time fields, you can add or subtract a
  497. :class:`~datetime.timedelta` object. The following would return all entries
  498. that were modified more than 3 days after they were published::
  499. >>> from datetime import timedelta
  500. >>> Entry.objects.filter(mod_date__gt=F('pub_date') + timedelta(days=3))
  501. The ``F()`` objects support bitwise operations by ``.bitand()``, ``.bitor()``,
  502. ``.bitxor()``, ``.bitrightshift()``, and ``.bitleftshift()``. For example::
  503. >>> F('somefield').bitand(16)
  504. .. admonition:: Oracle
  505. Oracle doesn't support bitwise XOR operation.
  506. .. _using-transforms-in-expressions:
  507. Expressions can reference transforms
  508. ------------------------------------
  509. Django supports using transforms in expressions.
  510. For example, to find all ``Entry`` objects published in the same year as they
  511. were last modified::
  512. >>> Entry.objects.filter(pub_date__year=F('mod_date__year'))
  513. To find the earliest year an entry was published, we can issue the query::
  514. >>> Entry.objects.aggregate(first_published_year=Min('pub_date__year'))
  515. This example finds the value of the highest rated entry and the total number
  516. of comments on all entries for each year::
  517. >>> Entry.objects.values('pub_date__year').annotate(
  518. ... top_rating=Subquery(
  519. ... Entry.objects.filter(
  520. ... pub_date__year=OuterRef('pub_date__year'),
  521. ... ).order_by('-rating').values('rating')[:1]
  522. ... ),
  523. ... total_comments=Sum('number_of_comments'),
  524. ... )
  525. The ``pk`` lookup shortcut
  526. --------------------------
  527. For convenience, Django provides a ``pk`` lookup shortcut, which stands for
  528. "primary key".
  529. In the example ``Blog`` model, the primary key is the ``id`` field, so these
  530. three statements are equivalent::
  531. >>> Blog.objects.get(id__exact=14) # Explicit form
  532. >>> Blog.objects.get(id=14) # __exact is implied
  533. >>> Blog.objects.get(pk=14) # pk implies id__exact
  534. The use of ``pk`` isn't limited to ``__exact`` queries -- any query term
  535. can be combined with ``pk`` to perform a query on the primary key of a model::
  536. # Get blogs entries with id 1, 4 and 7
  537. >>> Blog.objects.filter(pk__in=[1,4,7])
  538. # Get all blog entries with id > 14
  539. >>> Blog.objects.filter(pk__gt=14)
  540. ``pk`` lookups also work across joins. For example, these three statements are
  541. equivalent::
  542. >>> Entry.objects.filter(blog__id__exact=3) # Explicit form
  543. >>> Entry.objects.filter(blog__id=3) # __exact is implied
  544. >>> Entry.objects.filter(blog__pk=3) # __pk implies __id__exact
  545. Escaping percent signs and underscores in ``LIKE`` statements
  546. -------------------------------------------------------------
  547. The field lookups that equate to ``LIKE`` SQL statements (``iexact``,
  548. ``contains``, ``icontains``, ``startswith``, ``istartswith``, ``endswith``
  549. and ``iendswith``) will automatically escape the two special characters used in
  550. ``LIKE`` statements -- the percent sign and the underscore. (In a ``LIKE``
  551. statement, the percent sign signifies a multiple-character wildcard and the
  552. underscore signifies a single-character wildcard.)
  553. This means things should work intuitively, so the abstraction doesn't leak.
  554. For example, to retrieve all the entries that contain a percent sign, use the
  555. percent sign as any other character::
  556. >>> Entry.objects.filter(headline__contains='%')
  557. Django takes care of the quoting for you; the resulting SQL will look something
  558. like this:
  559. .. code-block:: sql
  560. SELECT ... WHERE headline LIKE '%\%%';
  561. Same goes for underscores. Both percentage signs and underscores are handled
  562. for you transparently.
  563. .. _caching-and-querysets:
  564. Caching and ``QuerySet``\s
  565. --------------------------
  566. Each :class:`~django.db.models.query.QuerySet` contains a cache to minimize
  567. database access. Understanding how it works will allow you to write the most
  568. efficient code.
  569. In a newly created :class:`~django.db.models.query.QuerySet`, the cache is
  570. empty. The first time a :class:`~django.db.models.query.QuerySet` is evaluated
  571. -- and, hence, a database query happens -- Django saves the query results in
  572. the :class:`~django.db.models.query.QuerySet`’s cache and returns the results
  573. that have been explicitly requested (e.g., the next element, if the
  574. :class:`~django.db.models.query.QuerySet` is being iterated over). Subsequent
  575. evaluations of the :class:`~django.db.models.query.QuerySet` reuse the cached
  576. results.
  577. Keep this caching behavior in mind, because it may bite you if you don't use
  578. your :class:`~django.db.models.query.QuerySet`\s correctly. For example, the
  579. following will create two :class:`~django.db.models.query.QuerySet`\s, evaluate
  580. them, and throw them away::
  581. >>> print([e.headline for e in Entry.objects.all()])
  582. >>> print([e.pub_date for e in Entry.objects.all()])
  583. That means the same database query will be executed twice, effectively doubling
  584. your database load. Also, there's a possibility the two lists may not include
  585. the same database records, because an ``Entry`` may have been added or deleted
  586. in the split second between the two requests.
  587. To avoid this problem, save the :class:`~django.db.models.query.QuerySet` and
  588. reuse it::
  589. >>> queryset = Entry.objects.all()
  590. >>> print([p.headline for p in queryset]) # Evaluate the query set.
  591. >>> print([p.pub_date for p in queryset]) # Re-use the cache from the evaluation.
  592. When ``QuerySet``\s are not cached
  593. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  594. Querysets do not always cache their results. When evaluating only *part* of
  595. the queryset, the cache is checked, but if it is not populated then the items
  596. returned by the subsequent query are not cached. Specifically, this means that
  597. :ref:`limiting the queryset <limiting-querysets>` using an array slice or an
  598. index will not populate the cache.
  599. For example, repeatedly getting a certain index in a queryset object will query
  600. the database each time::
  601. >>> queryset = Entry.objects.all()
  602. >>> print(queryset[5]) # Queries the database
  603. >>> print(queryset[5]) # Queries the database again
  604. However, if the entire queryset has already been evaluated, the cache will be
  605. checked instead::
  606. >>> queryset = Entry.objects.all()
  607. >>> [entry for entry in queryset] # Queries the database
  608. >>> print(queryset[5]) # Uses cache
  609. >>> print(queryset[5]) # Uses cache
  610. Here are some examples of other actions that will result in the entire queryset
  611. being evaluated and therefore populate the cache::
  612. >>> [entry for entry in queryset]
  613. >>> bool(queryset)
  614. >>> entry in queryset
  615. >>> list(queryset)
  616. .. note::
  617. Simply printing the queryset will not populate the cache. This is because
  618. the call to ``__repr__()`` only returns a slice of the entire queryset.
  619. .. _querying-jsonfield:
  620. Querying ``JSONField``
  621. ======================
  622. Lookups implementation is different in :class:`~django.db.models.JSONField`,
  623. mainly due to the existence of key transformations. To demonstrate, we will use
  624. the following example model::
  625. from django.db import models
  626. class Dog(models.Model):
  627. name = models.CharField(max_length=200)
  628. data = models.JSONField(null=True)
  629. def __str__(self):
  630. return self.name
  631. Storing and querying for ``None``
  632. ---------------------------------
  633. As with other fields, storing ``None`` as the field's value will store it as
  634. SQL ``NULL``. While not recommended, it is possible to store JSON scalar
  635. ``null`` instead of SQL ``NULL`` by using :class:`Value('null')
  636. <django.db.models.Value>`.
  637. Whichever of the values is stored, when retrieved from the database, the Python
  638. representation of the JSON scalar ``null`` is the same as SQL ``NULL``, i.e.
  639. ``None``. Therefore, it can be hard to distinguish between them.
  640. This only applies to ``None`` as the top-level value of the field. If ``None``
  641. is inside a :py:class:`list` or :py:class:`dict`, it will always be interpreted
  642. as JSON ``null``.
  643. When querying, ``None`` value will always be interpreted as JSON ``null``. To
  644. query for SQL ``NULL``, use :lookup:`isnull`::
  645. >>> Dog.objects.create(name='Max', data=None) # SQL NULL.
  646. <Dog: Max>
  647. >>> Dog.objects.create(name='Archie', data=Value('null')) # JSON null.
  648. <Dog: Archie>
  649. >>> Dog.objects.filter(data=None)
  650. <QuerySet [<Dog: Archie>]>
  651. >>> Dog.objects.filter(data=Value('null'))
  652. <QuerySet [<Dog: Archie>]>
  653. >>> Dog.objects.filter(data__isnull=True)
  654. <QuerySet [<Dog: Max>]>
  655. >>> Dog.objects.filter(data__isnull=False)
  656. <QuerySet [<Dog: Archie>]>
  657. Unless you are sure you wish to work with SQL ``NULL`` values, consider setting
  658. ``null=False`` and providing a suitable default for empty values, such as
  659. ``default=dict``.
  660. .. note::
  661. Storing JSON scalar ``null`` does not violate :attr:`null=False
  662. <django.db.models.Field.null>`.
  663. .. fieldlookup:: jsonfield.key
  664. Key, index, and path transforms
  665. -------------------------------
  666. To query based on a given dictionary key, use that key as the lookup name::
  667. >>> Dog.objects.create(name='Rufus', data={
  668. ... 'breed': 'labrador',
  669. ... 'owner': {
  670. ... 'name': 'Bob',
  671. ... 'other_pets': [{
  672. ... 'name': 'Fishy',
  673. ... }],
  674. ... },
  675. ... })
  676. <Dog: Rufus>
  677. >>> Dog.objects.create(name='Meg', data={'breed': 'collie', 'owner': None})
  678. <Dog: Meg>
  679. >>> Dog.objects.filter(data__breed='collie')
  680. <QuerySet [<Dog: Meg>]>
  681. Multiple keys can be chained together to form a path lookup::
  682. >>> Dog.objects.filter(data__owner__name='Bob')
  683. <QuerySet [<Dog: Rufus>]>
  684. If the key is an integer, it will be interpreted as an index transform in an
  685. array::
  686. >>> Dog.objects.filter(data__owner__other_pets__0__name='Fishy')
  687. <QuerySet [<Dog: Rufus>]>
  688. If the key you wish to query by clashes with the name of another lookup, use
  689. the :lookup:`contains <jsonfield.contains>` lookup instead.
  690. To query for missing keys, use the ``isnull`` lookup::
  691. >>> Dog.objects.create(name='Shep', data={'breed': 'collie'})
  692. <Dog: Shep>
  693. >>> Dog.objects.filter(data__owner__isnull=True)
  694. <QuerySet [<Dog: Shep>]>
  695. .. note::
  696. The lookup examples given above implicitly use the :lookup:`exact` lookup.
  697. Key, index, and path transforms can also be chained with:
  698. :lookup:`icontains`, :lookup:`endswith`, :lookup:`iendswith`,
  699. :lookup:`iexact`, :lookup:`regex`, :lookup:`iregex`, :lookup:`startswith`,
  700. :lookup:`istartswith`, :lookup:`lt`, :lookup:`lte`, :lookup:`gt`, and
  701. :lookup:`gte`, as well as with :ref:`containment-and-key-lookups`.
  702. .. note::
  703. Due to the way in which key-path queries work,
  704. :meth:`~django.db.models.query.QuerySet.exclude` and
  705. :meth:`~django.db.models.query.QuerySet.filter` are not guaranteed to
  706. produce exhaustive sets. If you want to include objects that do not have
  707. the path, add the ``isnull`` lookup.
  708. .. warning::
  709. Since any string could be a key in a JSON object, any lookup other than
  710. those listed below will be interpreted as a key lookup. No errors are
  711. raised. Be extra careful for typing mistakes, and always check your queries
  712. work as you intend.
  713. .. admonition:: MariaDB and Oracle users
  714. Using :meth:`~django.db.models.query.QuerySet.order_by` on key, index, or
  715. path transforms will sort the objects using the string representation of
  716. the values. This is because MariaDB and Oracle Database do not provide a
  717. function that converts JSON values into their equivalent SQL values.
  718. .. admonition:: Oracle users
  719. On Oracle Database, using ``None`` as the lookup value in an
  720. :meth:`~django.db.models.query.QuerySet.exclude` query will return objects
  721. that do not have ``null`` as the value at the given path, including objects
  722. that do not have the path. On other database backends, the query will
  723. return objects that have the path and the value is not ``null``.
  724. .. admonition:: PostgreSQL users
  725. On PostgreSQL, if only one key or index is used, the SQL operator ``->`` is
  726. used. If multiple operators are used then the ``#>`` operator is used.
  727. .. _containment-and-key-lookups:
  728. Containment and key lookups
  729. ---------------------------
  730. .. fieldlookup:: jsonfield.contains
  731. ``contains``
  732. ~~~~~~~~~~~~
  733. The :lookup:`contains` lookup is overridden on ``JSONField``. The returned
  734. objects are those where the given ``dict`` of key-value pairs are all
  735. contained in the top-level of the field. For example::
  736. >>> Dog.objects.create(name='Rufus', data={'breed': 'labrador', 'owner': 'Bob'})
  737. <Dog: Rufus>
  738. >>> Dog.objects.create(name='Meg', data={'breed': 'collie', 'owner': 'Bob'})
  739. <Dog: Meg>
  740. >>> Dog.objects.create(name='Fred', data={})
  741. <Dog: Fred>
  742. >>> Dog.objects.filter(data__contains={'owner': 'Bob'})
  743. <QuerySet [<Dog: Rufus>, <Dog: Meg>]>
  744. >>> Dog.objects.filter(data__contains={'breed': 'collie'})
  745. <QuerySet [<Dog: Meg>]>
  746. .. admonition:: Oracle and SQLite
  747. ``contains`` is not supported on Oracle and SQLite.
  748. .. fieldlookup:: jsonfield.contained_by
  749. ``contained_by``
  750. ~~~~~~~~~~~~~~~~
  751. This is the inverse of the :lookup:`contains <jsonfield.contains>` lookup - the
  752. objects returned will be those where the key-value pairs on the object are a
  753. subset of those in the value passed. For example::
  754. >>> Dog.objects.create(name='Rufus', data={'breed': 'labrador', 'owner': 'Bob'})
  755. <Dog: Rufus>
  756. >>> Dog.objects.create(name='Meg', data={'breed': 'collie', 'owner': 'Bob'})
  757. <Dog: Meg>
  758. >>> Dog.objects.create(name='Fred', data={})
  759. <Dog: Fred>
  760. >>> Dog.objects.filter(data__contained_by={'breed': 'collie', 'owner': 'Bob'})
  761. <QuerySet [<Dog: Meg>, <Dog: Fred>]>
  762. >>> Dog.objects.filter(data__contained_by={'breed': 'collie'})
  763. <QuerySet [<Dog: Fred>]>
  764. .. admonition:: Oracle and SQLite
  765. ``contained_by`` is not supported on Oracle and SQLite.
  766. .. fieldlookup:: jsonfield.has_key
  767. ``has_key``
  768. ~~~~~~~~~~~
  769. Returns objects where the given key is in the top-level of the data. For
  770. example::
  771. >>> Dog.objects.create(name='Rufus', data={'breed': 'labrador'})
  772. <Dog: Rufus>
  773. >>> Dog.objects.create(name='Meg', data={'breed': 'collie', 'owner': 'Bob'})
  774. <Dog: Meg>
  775. >>> Dog.objects.filter(data__has_key='owner')
  776. <QuerySet [<Dog: Meg>]>
  777. .. fieldlookup:: jsonfield.has_any_keys
  778. ``has_keys``
  779. ~~~~~~~~~~~~
  780. Returns objects where all of the given keys are in the top-level of the data.
  781. For example::
  782. >>> Dog.objects.create(name='Rufus', data={'breed': 'labrador'})
  783. <Dog: Rufus>
  784. >>> Dog.objects.create(name='Meg', data={'breed': 'collie', 'owner': 'Bob'})
  785. <Dog: Meg>
  786. >>> Dog.objects.filter(data__has_keys=['breed', 'owner'])
  787. <QuerySet [<Dog: Meg>]>
  788. .. fieldlookup:: jsonfield.has_keys
  789. ``has_any_keys``
  790. ~~~~~~~~~~~~~~~~
  791. Returns objects where any of the given keys are in the top-level of the data.
  792. For example::
  793. >>> Dog.objects.create(name='Rufus', data={'breed': 'labrador'})
  794. <Dog: Rufus>
  795. >>> Dog.objects.create(name='Meg', data={'owner': 'Bob'})
  796. <Dog: Meg>
  797. >>> Dog.objects.filter(data__has_any_keys=['owner', 'breed'])
  798. <QuerySet [<Dog: Rufus>, <Dog: Meg>]>
  799. .. _complex-lookups-with-q:
  800. Complex lookups with ``Q`` objects
  801. ==================================
  802. Keyword argument queries -- in :meth:`~django.db.models.query.QuerySet.filter`,
  803. etc. -- are "AND"ed together. If you need to execute more complex queries (for
  804. example, queries with ``OR`` statements), you can use :class:`Q objects <django.db.models.Q>`.
  805. A :class:`Q object <django.db.models.Q>` (``django.db.models.Q``) is an object
  806. used to encapsulate a collection of keyword arguments. These keyword arguments
  807. are specified as in "Field lookups" above.
  808. For example, this ``Q`` object encapsulates a single ``LIKE`` query::
  809. from django.db.models import Q
  810. Q(question__startswith='What')
  811. ``Q`` objects can be combined using the ``&`` and ``|`` operators. When an
  812. operator is used on two ``Q`` objects, it yields a new ``Q`` object.
  813. For example, this statement yields a single ``Q`` object that represents the
  814. "OR" of two ``"question__startswith"`` queries::
  815. Q(question__startswith='Who') | Q(question__startswith='What')
  816. This is equivalent to the following SQL ``WHERE`` clause::
  817. WHERE question LIKE 'Who%' OR question LIKE 'What%'
  818. You can compose statements of arbitrary complexity by combining ``Q`` objects
  819. with the ``&`` and ``|`` operators and use parenthetical grouping. Also, ``Q``
  820. objects can be negated using the ``~`` operator, allowing for combined lookups
  821. that combine both a normal query and a negated (``NOT``) query::
  822. Q(question__startswith='Who') | ~Q(pub_date__year=2005)
  823. Each lookup function that takes keyword-arguments
  824. (e.g. :meth:`~django.db.models.query.QuerySet.filter`,
  825. :meth:`~django.db.models.query.QuerySet.exclude`,
  826. :meth:`~django.db.models.query.QuerySet.get`) can also be passed one or more
  827. ``Q`` objects as positional (not-named) arguments. If you provide multiple
  828. ``Q`` object arguments to a lookup function, the arguments will be "AND"ed
  829. together. For example::
  830. Poll.objects.get(
  831. Q(question__startswith='Who'),
  832. Q(pub_date=date(2005, 5, 2)) | Q(pub_date=date(2005, 5, 6))
  833. )
  834. ... roughly translates into the SQL:
  835. .. code-block:: sql
  836. SELECT * from polls WHERE question LIKE 'Who%'
  837. AND (pub_date = '2005-05-02' OR pub_date = '2005-05-06')
  838. Lookup functions can mix the use of ``Q`` objects and keyword arguments. All
  839. arguments provided to a lookup function (be they keyword arguments or ``Q``
  840. objects) are "AND"ed together. However, if a ``Q`` object is provided, it must
  841. precede the definition of any keyword arguments. For example::
  842. Poll.objects.get(
  843. Q(pub_date=date(2005, 5, 2)) | Q(pub_date=date(2005, 5, 6)),
  844. question__startswith='Who',
  845. )
  846. ... would be a valid query, equivalent to the previous example; but::
  847. # INVALID QUERY
  848. Poll.objects.get(
  849. question__startswith='Who',
  850. Q(pub_date=date(2005, 5, 2)) | Q(pub_date=date(2005, 5, 6))
  851. )
  852. ... would not be valid.
  853. .. seealso::
  854. The :source:`OR lookups examples <tests/or_lookups/tests.py>` in Django's
  855. unit tests show some possible uses of ``Q``.
  856. Comparing objects
  857. =================
  858. To compare two model instances, use the standard Python comparison operator,
  859. the double equals sign: ``==``. Behind the scenes, that compares the primary
  860. key values of two models.
  861. Using the ``Entry`` example above, the following two statements are equivalent::
  862. >>> some_entry == other_entry
  863. >>> some_entry.id == other_entry.id
  864. If a model's primary key isn't called ``id``, no problem. Comparisons will
  865. always use the primary key, whatever it's called. For example, if a model's
  866. primary key field is called ``name``, these two statements are equivalent::
  867. >>> some_obj == other_obj
  868. >>> some_obj.name == other_obj.name
  869. .. _topics-db-queries-delete:
  870. Deleting objects
  871. ================
  872. The delete method, conveniently, is named
  873. :meth:`~django.db.models.Model.delete`. This method immediately deletes the
  874. object and returns the number of objects deleted and a dictionary with
  875. the number of deletions per object type. Example::
  876. >>> e.delete()
  877. (1, {'blog.Entry': 1})
  878. You can also delete objects in bulk. Every
  879. :class:`~django.db.models.query.QuerySet` has a
  880. :meth:`~django.db.models.query.QuerySet.delete` method, which deletes all
  881. members of that :class:`~django.db.models.query.QuerySet`.
  882. For example, this deletes all ``Entry`` objects with a ``pub_date`` year of
  883. 2005::
  884. >>> Entry.objects.filter(pub_date__year=2005).delete()
  885. (5, {'webapp.Entry': 5})
  886. Keep in mind that this will, whenever possible, be executed purely in SQL, and
  887. so the ``delete()`` methods of individual object instances will not necessarily
  888. be called during the process. If you've provided a custom ``delete()`` method
  889. on a model class and want to ensure that it is called, you will need to
  890. "manually" delete instances of that model (e.g., by iterating over a
  891. :class:`~django.db.models.query.QuerySet` and calling ``delete()`` on each
  892. object individually) rather than using the bulk
  893. :meth:`~django.db.models.query.QuerySet.delete` method of a
  894. :class:`~django.db.models.query.QuerySet`.
  895. When Django deletes an object, by default it emulates the behavior of the SQL
  896. constraint ``ON DELETE CASCADE`` -- in other words, any objects which had
  897. foreign keys pointing at the object to be deleted will be deleted along with
  898. it. For example::
  899. b = Blog.objects.get(pk=1)
  900. # This will delete the Blog and all of its Entry objects.
  901. b.delete()
  902. This cascade behavior is customizable via the
  903. :attr:`~django.db.models.ForeignKey.on_delete` argument to the
  904. :class:`~django.db.models.ForeignKey`.
  905. Note that :meth:`~django.db.models.query.QuerySet.delete` is the only
  906. :class:`~django.db.models.query.QuerySet` method that is not exposed on a
  907. :class:`~django.db.models.Manager` itself. This is a safety mechanism to
  908. prevent you from accidentally requesting ``Entry.objects.delete()``, and
  909. deleting *all* the entries. If you *do* want to delete all the objects, then
  910. you have to explicitly request a complete query set::
  911. Entry.objects.all().delete()
  912. .. _topics-db-queries-copy:
  913. Copying model instances
  914. =======================
  915. Although there is no built-in method for copying model instances, it is
  916. possible to easily create new instance with all fields' values copied. In the
  917. simplest case, you can set ``pk`` to ``None`` and
  918. :attr:`_state.adding <django.db.models.Model._state>` to ``True``. Using our
  919. blog example::
  920. blog = Blog(name='My blog', tagline='Blogging is easy')
  921. blog.save() # blog.pk == 1
  922. blog.pk = None
  923. blog._state.adding = True
  924. blog.save() # blog.pk == 2
  925. Things get more complicated if you use inheritance. Consider a subclass of
  926. ``Blog``::
  927. class ThemeBlog(Blog):
  928. theme = models.CharField(max_length=200)
  929. django_blog = ThemeBlog(name='Django', tagline='Django is easy', theme='python')
  930. django_blog.save() # django_blog.pk == 3
  931. Due to how inheritance works, you have to set both ``pk`` and ``id`` to
  932. ``None``, and ``_state.adding`` to ``True``::
  933. django_blog.pk = None
  934. django_blog.id = None
  935. django_blog._state.adding = True
  936. django_blog.save() # django_blog.pk == 4
  937. This process doesn't copy relations that aren't part of the model's database
  938. table. For example, ``Entry`` has a ``ManyToManyField`` to ``Author``. After
  939. duplicating an entry, you must set the many-to-many relations for the new
  940. entry::
  941. entry = Entry.objects.all()[0] # some previous entry
  942. old_authors = entry.authors.all()
  943. entry.pk = None
  944. entry._state.adding = True
  945. entry.save()
  946. entry.authors.set(old_authors)
  947. For a ``OneToOneField``, you must duplicate the related object and assign it
  948. to the new object's field to avoid violating the one-to-one unique constraint.
  949. For example, assuming ``entry`` is already duplicated as above::
  950. detail = EntryDetail.objects.all()[0]
  951. detail.pk = None
  952. detail._state.adding = True
  953. detail.entry = entry
  954. detail.save()
  955. .. _topics-db-queries-update:
  956. Updating multiple objects at once
  957. =================================
  958. Sometimes you want to set a field to a particular value for all the objects in
  959. a :class:`~django.db.models.query.QuerySet`. You can do this with the
  960. :meth:`~django.db.models.query.QuerySet.update` method. For example::
  961. # Update all the headlines with pub_date in 2007.
  962. Entry.objects.filter(pub_date__year=2007).update(headline='Everything is the same')
  963. You can only set non-relation fields and :class:`~django.db.models.ForeignKey`
  964. fields using this method. To update a non-relation field, provide the new value
  965. as a constant. To update :class:`~django.db.models.ForeignKey` fields, set the
  966. new value to be the new model instance you want to point to. For example::
  967. >>> b = Blog.objects.get(pk=1)
  968. # Change every Entry so that it belongs to this Blog.
  969. >>> Entry.objects.all().update(blog=b)
  970. The ``update()`` method is applied instantly and returns the number of rows
  971. matched by the query (which may not be equal to the number of rows updated if
  972. some rows already have the new value). The only restriction on the
  973. :class:`~django.db.models.query.QuerySet` being updated is that it can only
  974. access one database table: the model's main table. You can filter based on
  975. related fields, but you can only update columns in the model's main
  976. table. Example::
  977. >>> b = Blog.objects.get(pk=1)
  978. # Update all the headlines belonging to this Blog.
  979. >>> Entry.objects.filter(blog=b).update(headline='Everything is the same')
  980. Be aware that the ``update()`` method is converted directly to an SQL
  981. statement. It is a bulk operation for direct updates. It doesn't run any
  982. :meth:`~django.db.models.Model.save` methods on your models, or emit the
  983. ``pre_save`` or ``post_save`` signals (which are a consequence of calling
  984. :meth:`~django.db.models.Model.save`), or honor the
  985. :attr:`~django.db.models.DateField.auto_now` field option.
  986. If you want to save every item in a :class:`~django.db.models.query.QuerySet`
  987. and make sure that the :meth:`~django.db.models.Model.save` method is called on
  988. each instance, you don't need any special function to handle that. Loop over
  989. them and call :meth:`~django.db.models.Model.save`::
  990. for item in my_queryset:
  991. item.save()
  992. Calls to update can also use :class:`F expressions <django.db.models.F>` to
  993. update one field based on the value of another field in the model. This is
  994. especially useful for incrementing counters based upon their current value. For
  995. example, to increment the pingback count for every entry in the blog::
  996. >>> Entry.objects.all().update(number_of_pingbacks=F('number_of_pingbacks') + 1)
  997. However, unlike ``F()`` objects in filter and exclude clauses, you can't
  998. introduce joins when you use ``F()`` objects in an update -- you can only
  999. reference fields local to the model being updated. If you attempt to introduce
  1000. a join with an ``F()`` object, a ``FieldError`` will be raised::
  1001. # This will raise a FieldError
  1002. >>> Entry.objects.update(headline=F('blog__name'))
  1003. .. _topics-db-queries-related:
  1004. Related objects
  1005. ===============
  1006. When you define a relationship in a model (i.e., a
  1007. :class:`~django.db.models.ForeignKey`,
  1008. :class:`~django.db.models.OneToOneField`, or
  1009. :class:`~django.db.models.ManyToManyField`), instances of that model will have
  1010. a convenient API to access the related object(s).
  1011. Using the models at the top of this page, for example, an ``Entry`` object ``e``
  1012. can get its associated ``Blog`` object by accessing the ``blog`` attribute:
  1013. ``e.blog``.
  1014. (Behind the scenes, this functionality is implemented by Python
  1015. :doc:`descriptors <python:howto/descriptor>`. This shouldn't really matter to
  1016. you, but we point it out here for the curious.)
  1017. Django also creates API accessors for the "other" side of the relationship --
  1018. the link from the related model to the model that defines the relationship.
  1019. For example, a ``Blog`` object ``b`` has access to a list of all related
  1020. ``Entry`` objects via the ``entry_set`` attribute: ``b.entry_set.all()``.
  1021. All examples in this section use the sample ``Blog``, ``Author`` and ``Entry``
  1022. models defined at the top of this page.
  1023. One-to-many relationships
  1024. -------------------------
  1025. Forward
  1026. ~~~~~~~
  1027. If a model has a :class:`~django.db.models.ForeignKey`, instances of that model
  1028. will have access to the related (foreign) object via an attribute of the model.
  1029. Example::
  1030. >>> e = Entry.objects.get(id=2)
  1031. >>> e.blog # Returns the related Blog object.
  1032. You can get and set via a foreign-key attribute. As you may expect, changes to
  1033. the foreign key aren't saved to the database until you call
  1034. :meth:`~django.db.models.Model.save`. Example::
  1035. >>> e = Entry.objects.get(id=2)
  1036. >>> e.blog = some_blog
  1037. >>> e.save()
  1038. If a :class:`~django.db.models.ForeignKey` field has ``null=True`` set (i.e.,
  1039. it allows ``NULL`` values), you can assign ``None`` to remove the relation.
  1040. Example::
  1041. >>> e = Entry.objects.get(id=2)
  1042. >>> e.blog = None
  1043. >>> e.save() # "UPDATE blog_entry SET blog_id = NULL ...;"
  1044. Forward access to one-to-many relationships is cached the first time the
  1045. related object is accessed. Subsequent accesses to the foreign key on the same
  1046. object instance are cached. Example::
  1047. >>> e = Entry.objects.get(id=2)
  1048. >>> print(e.blog) # Hits the database to retrieve the associated Blog.
  1049. >>> print(e.blog) # Doesn't hit the database; uses cached version.
  1050. Note that the :meth:`~django.db.models.query.QuerySet.select_related`
  1051. :class:`~django.db.models.query.QuerySet` method recursively prepopulates the
  1052. cache of all one-to-many relationships ahead of time. Example::
  1053. >>> e = Entry.objects.select_related().get(id=2)
  1054. >>> print(e.blog) # Doesn't hit the database; uses cached version.
  1055. >>> print(e.blog) # Doesn't hit the database; uses cached version.
  1056. .. _backwards-related-objects:
  1057. Following relationships "backward"
  1058. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1059. If a model has a :class:`~django.db.models.ForeignKey`, instances of the
  1060. foreign-key model will have access to a :class:`~django.db.models.Manager` that
  1061. returns all instances of the first model. By default, this
  1062. :class:`~django.db.models.Manager` is named ``FOO_set``, where ``FOO`` is the
  1063. source model name, lowercased. This :class:`~django.db.models.Manager` returns
  1064. ``QuerySets``, which can be filtered and manipulated as described in the
  1065. "Retrieving objects" section above.
  1066. Example::
  1067. >>> b = Blog.objects.get(id=1)
  1068. >>> b.entry_set.all() # Returns all Entry objects related to Blog.
  1069. # b.entry_set is a Manager that returns QuerySets.
  1070. >>> b.entry_set.filter(headline__contains='Lennon')
  1071. >>> b.entry_set.count()
  1072. You can override the ``FOO_set`` name by setting the
  1073. :attr:`~django.db.models.ForeignKey.related_name` parameter in the
  1074. :class:`~django.db.models.ForeignKey` definition. For example, if the ``Entry``
  1075. model was altered to ``blog = ForeignKey(Blog, on_delete=models.CASCADE,
  1076. related_name='entries')``, the above example code would look like this::
  1077. >>> b = Blog.objects.get(id=1)
  1078. >>> b.entries.all() # Returns all Entry objects related to Blog.
  1079. # b.entries is a Manager that returns QuerySets.
  1080. >>> b.entries.filter(headline__contains='Lennon')
  1081. >>> b.entries.count()
  1082. .. _using-custom-reverse-manager:
  1083. Using a custom reverse manager
  1084. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1085. By default the :class:`~django.db.models.fields.related.RelatedManager` used
  1086. for reverse relations is a subclass of the :ref:`default manager <manager-names>`
  1087. for that model. If you would like to specify a different manager for a given
  1088. query you can use the following syntax::
  1089. from django.db import models
  1090. class Entry(models.Model):
  1091. #...
  1092. objects = models.Manager() # Default Manager
  1093. entries = EntryManager() # Custom Manager
  1094. b = Blog.objects.get(id=1)
  1095. b.entry_set(manager='entries').all()
  1096. If ``EntryManager`` performed default filtering in its ``get_queryset()``
  1097. method, that filtering would apply to the ``all()`` call.
  1098. Specifying a custom reverse manager also enables you to call its custom
  1099. methods::
  1100. b.entry_set(manager='entries').is_published()
  1101. Additional methods to handle related objects
  1102. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1103. In addition to the :class:`~django.db.models.query.QuerySet` methods defined in
  1104. "Retrieving objects" above, the :class:`~django.db.models.ForeignKey`
  1105. :class:`~django.db.models.Manager` has additional methods used to handle the
  1106. set of related objects. A synopsis of each is below, and complete details can
  1107. be found in the :doc:`related objects reference </ref/models/relations>`.
  1108. ``add(obj1, obj2, ...)``
  1109. Adds the specified model objects to the related object set.
  1110. ``create(**kwargs)``
  1111. Creates a new object, saves it and puts it in the related object set.
  1112. Returns the newly created object.
  1113. ``remove(obj1, obj2, ...)``
  1114. Removes the specified model objects from the related object set.
  1115. ``clear()``
  1116. Removes all objects from the related object set.
  1117. ``set(objs)``
  1118. Replace the set of related objects.
  1119. To assign the members of a related set, use the ``set()`` method with an
  1120. iterable of object instances. For example, if ``e1`` and ``e2`` are ``Entry``
  1121. instances::
  1122. b = Blog.objects.get(id=1)
  1123. b.entry_set.set([e1, e2])
  1124. If the ``clear()`` method is available, any pre-existing objects will be
  1125. removed from the ``entry_set`` before all objects in the iterable (in this
  1126. case, a list) are added to the set. If the ``clear()`` method is *not*
  1127. available, all objects in the iterable will be added without removing any
  1128. existing elements.
  1129. Each "reverse" operation described in this section has an immediate effect on
  1130. the database. Every addition, creation and deletion is immediately and
  1131. automatically saved to the database.
  1132. .. _m2m-reverse-relationships:
  1133. Many-to-many relationships
  1134. --------------------------
  1135. Both ends of a many-to-many relationship get automatic API access to the other
  1136. end. The API works similar to a "backward" one-to-many relationship, above.
  1137. One difference is in the attribute naming: The model that defines the
  1138. :class:`~django.db.models.ManyToManyField` uses the attribute name of that
  1139. field itself, whereas the "reverse" model uses the lowercased model name of the
  1140. original model, plus ``'_set'`` (just like reverse one-to-many relationships).
  1141. An example makes this easier to understand::
  1142. e = Entry.objects.get(id=3)
  1143. e.authors.all() # Returns all Author objects for this Entry.
  1144. e.authors.count()
  1145. e.authors.filter(name__contains='John')
  1146. a = Author.objects.get(id=5)
  1147. a.entry_set.all() # Returns all Entry objects for this Author.
  1148. Like :class:`~django.db.models.ForeignKey`,
  1149. :class:`~django.db.models.ManyToManyField` can specify
  1150. :attr:`~django.db.models.ManyToManyField.related_name`. In the above example,
  1151. if the :class:`~django.db.models.ManyToManyField` in ``Entry`` had specified
  1152. ``related_name='entries'``, then each ``Author`` instance would have an
  1153. ``entries`` attribute instead of ``entry_set``.
  1154. Another difference from one-to-many relationships is that in addition to model
  1155. instances, the ``add()``, ``set()``, and ``remove()`` methods on many-to-many
  1156. relationships accept primary key values. For example, if ``e1`` and ``e2`` are
  1157. ``Entry`` instances, then these ``set()`` calls work identically::
  1158. a = Author.objects.get(id=5)
  1159. a.entry_set.set([e1, e2])
  1160. a.entry_set.set([e1.pk, e2.pk])
  1161. One-to-one relationships
  1162. ------------------------
  1163. One-to-one relationships are very similar to many-to-one relationships. If you
  1164. define a :class:`~django.db.models.OneToOneField` on your model, instances of
  1165. that model will have access to the related object via an attribute of the
  1166. model.
  1167. For example::
  1168. class EntryDetail(models.Model):
  1169. entry = models.OneToOneField(Entry, on_delete=models.CASCADE)
  1170. details = models.TextField()
  1171. ed = EntryDetail.objects.get(id=2)
  1172. ed.entry # Returns the related Entry object.
  1173. The difference comes in "reverse" queries. The related model in a one-to-one
  1174. relationship also has access to a :class:`~django.db.models.Manager` object, but
  1175. that :class:`~django.db.models.Manager` represents a single object, rather than
  1176. a collection of objects::
  1177. e = Entry.objects.get(id=2)
  1178. e.entrydetail # returns the related EntryDetail object
  1179. If no object has been assigned to this relationship, Django will raise
  1180. a ``DoesNotExist`` exception.
  1181. Instances can be assigned to the reverse relationship in the same way as
  1182. you would assign the forward relationship::
  1183. e.entrydetail = ed
  1184. How are the backward relationships possible?
  1185. --------------------------------------------
  1186. Other object-relational mappers require you to define relationships on both
  1187. sides. The Django developers believe this is a violation of the DRY (Don't
  1188. Repeat Yourself) principle, so Django only requires you to define the
  1189. relationship on one end.
  1190. But how is this possible, given that a model class doesn't know which other
  1191. model classes are related to it until those other model classes are loaded?
  1192. The answer lies in the :data:`app registry <django.apps.apps>`. When Django
  1193. starts, it imports each application listed in :setting:`INSTALLED_APPS`, and
  1194. then the ``models`` module inside each application. Whenever a new model class
  1195. is created, Django adds backward-relationships to any related models. If the
  1196. related models haven't been imported yet, Django keeps tracks of the
  1197. relationships and adds them when the related models eventually are imported.
  1198. For this reason, it's particularly important that all the models you're using
  1199. be defined in applications listed in :setting:`INSTALLED_APPS`. Otherwise,
  1200. backwards relations may not work properly.
  1201. Queries over related objects
  1202. ----------------------------
  1203. Queries involving related objects follow the same rules as queries involving
  1204. normal value fields. When specifying the value for a query to match, you may
  1205. use either an object instance itself, or the primary key value for the object.
  1206. For example, if you have a Blog object ``b`` with ``id=5``, the following
  1207. three queries would be identical::
  1208. Entry.objects.filter(blog=b) # Query using object instance
  1209. Entry.objects.filter(blog=b.id) # Query using id from instance
  1210. Entry.objects.filter(blog=5) # Query using id directly
  1211. Falling back to raw SQL
  1212. =======================
  1213. If you find yourself needing to write an SQL query that is too complex for
  1214. Django's database-mapper to handle, you can fall back on writing SQL by hand.
  1215. Django has a couple of options for writing raw SQL queries; see
  1216. :doc:`/topics/db/sql`.
  1217. Finally, it's important to note that the Django database layer is merely an
  1218. interface to your database. You can access your database via other tools,
  1219. programming languages or database frameworks; there's nothing Django-specific
  1220. about your database.