2
0

lookups.txt 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. ====================
  2. Lookup API reference
  3. ====================
  4. .. module:: django.db.models.lookups
  5. :synopsis: Lookups API
  6. .. currentmodule:: django.db.models
  7. This document has the API references of lookups, the Django API for building
  8. the ``WHERE`` clause of a database query. To learn how to *use* lookups, see
  9. :doc:`/topics/db/queries`; to learn how to *create* new lookups, see
  10. :doc:`/howto/custom-lookups`.
  11. The lookup API has two components: a :class:`~lookups.RegisterLookupMixin` class
  12. that registers lookups, and the :ref:`Query Expression API <query-expression>`, a
  13. set of methods that a class has to implement to be registrable as a lookup.
  14. Django has two base classes that follow the query expression API and from where
  15. all Django builtin lookups are derived:
  16. * :class:`Lookup`: to lookup a field (e.g. the ``exact`` of ``field_name__exact``)
  17. * :class:`Transform`: to transform a field
  18. A lookup expression consists of three parts:
  19. * Fields part (e.g. ``Book.objects.filter(author__best_friends__first_name...``);
  20. * Transforms part (may be omitted) (e.g. ``__lower__first3chars__reversed``);
  21. * A lookup (e.g. ``__icontains``) that, if omitted, defaults to ``__exact``.
  22. .. _lookup-registration-api:
  23. Registration API
  24. ================
  25. Django uses :class:`~lookups.RegisterLookupMixin` to give a class the interface to
  26. register lookups on itself or its instances. The two prominent examples are
  27. :class:`~django.db.models.Field`, the base class of all model fields, and
  28. :class:`Transform`, the base class of all Django transforms.
  29. .. class:: lookups.RegisterLookupMixin
  30. A mixin that implements the lookup API on a class.
  31. .. classmethod:: register_lookup(lookup, lookup_name=None)
  32. Registers a new lookup in the class or class instance. For example::
  33. DateField.register_lookup(YearExact)
  34. User._meta.get_field("date_joined").register_lookup(MonthExact)
  35. will register ``YearExact`` lookup on ``DateField`` and ``MonthExact``
  36. lookup on the ``User.date_joined`` (you can use :ref:`Field Access API
  37. <model-meta-field-api>` to retrieve a single field instance). It
  38. overrides a lookup that already exists with the same name. Lookups
  39. registered on field instances take precedence over the lookups
  40. registered on classes. ``lookup_name`` will be used for this lookup if
  41. provided, otherwise ``lookup.lookup_name`` will be used.
  42. .. method:: get_lookup(lookup_name)
  43. Returns the :class:`Lookup` named ``lookup_name`` registered in the
  44. class or class instance depending on what calls it. The default
  45. implementation looks recursively on all parent classes and checks if
  46. any has a registered lookup named ``lookup_name``, returning the first
  47. match. Instance lookups would override any class lookups with the same
  48. ``lookup_name``.
  49. .. method:: get_lookups()
  50. Returns a dictionary of each lookup name registered in the class or
  51. class instance mapped to the :class:`Lookup` class.
  52. .. method:: get_transform(transform_name)
  53. Returns a :class:`Transform` named ``transform_name`` registered in the
  54. class or class instance. The default implementation looks recursively
  55. on all parent classes to check if any has the registered transform
  56. named ``transform_name``, returning the first match.
  57. For a class to be a lookup, it must follow the :ref:`Query Expression API
  58. <query-expression>`. :class:`~Lookup` and :class:`~Transform` naturally
  59. follow this API.
  60. .. _query-expression:
  61. The Query Expression API
  62. ========================
  63. The query expression API is a common set of methods that classes define to be
  64. usable in query expressions to translate themselves into SQL expressions. Direct
  65. field references, aggregates, and ``Transform`` are examples that follow this
  66. API. A class is said to follow the query expression API when it implements the
  67. following methods:
  68. .. method:: as_sql(compiler, connection)
  69. Generates the SQL fragment for the expression. Returns a tuple
  70. ``(sql, params)``, where ``sql`` is the SQL string, and ``params`` is the
  71. list or tuple of query parameters. The ``compiler`` is an ``SQLCompiler``
  72. object, which has a ``compile()`` method that can be used to compile other
  73. expressions. The ``connection`` is the connection used to execute the
  74. query.
  75. Calling ``expression.as_sql()`` is usually incorrect - instead
  76. ``compiler.compile(expression)`` should be used. The ``compiler.compile()``
  77. method will take care of calling vendor-specific methods of the expression.
  78. Custom keyword arguments may be defined on this method if it's likely that
  79. ``as_vendorname()`` methods or subclasses will need to supply data to
  80. override the generation of the SQL string. See :meth:`Func.as_sql` for
  81. example usage.
  82. .. method:: as_vendorname(compiler, connection)
  83. Works like ``as_sql()`` method. When an expression is compiled by
  84. ``compiler.compile()``, Django will first try to call ``as_vendorname()``,
  85. where ``vendorname`` is the vendor name of the backend used for executing
  86. the query. The ``vendorname`` is one of ``postgresql``, ``oracle``,
  87. ``sqlite``, or ``mysql`` for Django's built-in backends.
  88. .. method:: get_lookup(lookup_name)
  89. Must return the lookup named ``lookup_name``. For instance, by returning
  90. ``self.output_field.get_lookup(lookup_name)``.
  91. .. method:: get_transform(transform_name)
  92. Must return the lookup named ``transform_name``. For instance, by returning
  93. ``self.output_field.get_transform(transform_name)``.
  94. .. attribute:: output_field
  95. Defines the type of class returned by the ``get_lookup()`` method. It must
  96. be a :class:`~django.db.models.Field` instance.
  97. ``Transform`` reference
  98. =======================
  99. .. class:: Transform
  100. A ``Transform`` is a generic class to implement field transformations. A
  101. prominent example is ``__year`` that transforms a ``DateField`` into a
  102. ``IntegerField``.
  103. The notation to use a ``Transform`` in a lookup expression is
  104. ``<expression>__<transformation>`` (e.g. ``date__year``).
  105. This class follows the :ref:`Query Expression API <query-expression>`, which
  106. implies that you can use ``<expression>__<transform1>__<transform2>``. It's
  107. a specialized :ref:`Func() expression <func-expressions>` that only accepts
  108. one argument. It can also be used on the right hand side of a filter or
  109. directly as an annotation.
  110. .. attribute:: bilateral
  111. A boolean indicating whether this transformation should apply to both
  112. ``lhs`` and ``rhs``. Bilateral transformations will be applied to ``rhs`` in
  113. the same order as they appear in the lookup expression. By default it is set
  114. to ``False``. For example usage, see :doc:`/howto/custom-lookups`.
  115. .. attribute:: lhs
  116. The left-hand side - what is being transformed. It must follow the
  117. :ref:`Query Expression API <query-expression>`.
  118. .. attribute:: lookup_name
  119. The name of the lookup, used for identifying it on parsing query
  120. expressions. It cannot contain the string ``"__"``.
  121. .. attribute:: output_field
  122. Defines the class this transformation outputs. It must be a
  123. :class:`~django.db.models.Field` instance. By default is the same as
  124. its ``lhs.output_field``.
  125. ``Lookup`` reference
  126. ====================
  127. .. class:: Lookup
  128. A ``Lookup`` is a generic class to implement lookups. A lookup is a query
  129. expression with a left-hand side, :attr:`lhs`; a right-hand side,
  130. :attr:`rhs`; and a ``lookup_name`` that is used to produce a boolean
  131. comparison between ``lhs`` and ``rhs`` such as ``lhs in rhs`` or
  132. ``lhs > rhs``.
  133. The primary notation to use a lookup in an expression is
  134. ``<lhs>__<lookup_name>=<rhs>``. Lookups can also be used directly in
  135. ``QuerySet`` filters::
  136. Book.objects.filter(LessThan(F("word_count"), 7500))
  137. …or annotations::
  138. Book.objects.annotate(is_short_story=LessThan(F("word_count"), 7500))
  139. .. attribute:: lhs
  140. The left-hand side - what is being looked up. The object typically
  141. follows the :ref:`Query Expression API <query-expression>`. It may also
  142. be a plain value.
  143. .. attribute:: rhs
  144. The right-hand side - what ``lhs`` is being compared against. It can be
  145. a plain value, or something that compiles into SQL, typically an
  146. ``F()`` object or a ``QuerySet``.
  147. .. attribute:: lookup_name
  148. The name of this lookup, used to identify it on parsing query
  149. expressions. It cannot contain the string ``"__"``.
  150. .. attribute:: prepare_rhs
  151. Defaults to ``True``. When :attr:`rhs` is a plain value,
  152. :attr:`prepare_rhs` determines whether it should be prepared for use as
  153. a parameter in a query. In order to do so,
  154. ``lhs.output_field.get_prep_value()`` is called if defined, or ``rhs``
  155. is wrapped in :class:`Value() <django.db.models.Value>` otherwise.
  156. .. method:: process_lhs(compiler, connection, lhs=None)
  157. Returns a tuple ``(lhs_string, lhs_params)``, as returned by
  158. ``compiler.compile(lhs)``. This method can be overridden to tune how
  159. the ``lhs`` is processed.
  160. ``compiler`` is an ``SQLCompiler`` object, to be used like
  161. ``compiler.compile(lhs)`` for compiling ``lhs``. The ``connection``
  162. can be used for compiling vendor specific SQL. If ``lhs`` is not
  163. ``None``, use it as the processed ``lhs`` instead of ``self.lhs``.
  164. .. method:: process_rhs(compiler, connection)
  165. Behaves the same way as :meth:`process_lhs`, for the right-hand side.