expressions.txt 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708
  1. =================
  2. Query Expressions
  3. =================
  4. .. currentmodule:: django.db.models
  5. Query expressions describe a value or a computation that can be used as part of
  6. an update, create, filter, order by, annotation, or aggregate. There are a
  7. number of built-in expressions (documented below) that can be used to help you
  8. write queries. Expressions can be combined, or in some cases nested, to form
  9. more complex computations.
  10. .. versionchanged:: 1.9
  11. Support for using expressions when creating new model instances was added.
  12. Supported arithmetic
  13. ====================
  14. Django supports addition, subtraction, multiplication, division, modulo
  15. arithmetic, and the power operator on query expressions, using Python constants,
  16. variables, and even other expressions.
  17. Some examples
  18. =============
  19. .. code-block:: python
  20. from django.db.models import F, Count
  21. from django.db.models.functions import Length, Upper, Value
  22. # Find companies that have more employees than chairs.
  23. Company.objects.filter(num_employees__gt=F('num_chairs'))
  24. # Find companies that have at least twice as many employees
  25. # as chairs. Both the querysets below are equivalent.
  26. Company.objects.filter(num_employees__gt=F('num_chairs') * 2)
  27. Company.objects.filter(
  28. num_employees__gt=F('num_chairs') + F('num_chairs'))
  29. # How many chairs are needed for each company to seat all employees?
  30. >>> company = Company.objects.filter(
  31. ... num_employees__gt=F('num_chairs')).annotate(
  32. ... chairs_needed=F('num_employees') - F('num_chairs')).first()
  33. >>> company.num_employees
  34. 120
  35. >>> company.num_chairs
  36. 50
  37. >>> company.chairs_needed
  38. 70
  39. # Create a new company using expressions.
  40. >>> company = Company.objects.create(name='Google', ticker=Upper(Value('goog')))
  41. # Be sure to refresh it if you need to access the field.
  42. >>> company.refresh_from_db()
  43. >>> company.ticker
  44. 'GOOG'
  45. # Annotate models with an aggregated value. Both forms
  46. # below are equivalent.
  47. Company.objects.annotate(num_products=Count('products'))
  48. Company.objects.annotate(num_products=Count(F('products')))
  49. # Aggregates can contain complex computations also
  50. Company.objects.annotate(num_offerings=Count(F('products') + F('services')))
  51. # Expressions can also be used in order_by()
  52. Company.objects.order_by(Length('name').asc())
  53. Company.objects.order_by(Length('name').desc())
  54. Built-in Expressions
  55. ====================
  56. .. note::
  57. These expressions are defined in ``django.db.models.expressions`` and
  58. ``django.db.models.aggregates``, but for convenience they're available and
  59. usually imported from :mod:`django.db.models`.
  60. ``F()`` expressions
  61. -------------------
  62. .. class:: F
  63. An ``F()`` object represents the value of a model field or annotated column. It
  64. makes it possible to refer to model field values and perform database
  65. operations using them without actually having to pull them out of the database
  66. into Python memory.
  67. Instead, Django uses the ``F()`` object to generate a SQL expression that
  68. describes the required operation at the database level.
  69. This is easiest to understand through an example. Normally, one might do
  70. something like this::
  71. # Tintin filed a news story!
  72. reporter = Reporters.objects.get(name='Tintin')
  73. reporter.stories_filed += 1
  74. reporter.save()
  75. Here, we have pulled the value of ``reporter.stories_filed`` from the database
  76. into memory and manipulated it using familiar Python operators, and then saved
  77. the object back to the database. But instead we could also have done::
  78. from django.db.models import F
  79. reporter = Reporters.objects.get(name='Tintin')
  80. reporter.stories_filed = F('stories_filed') + 1
  81. reporter.save()
  82. Although ``reporter.stories_filed = F('stories_filed') + 1`` looks like a
  83. normal Python assignment of value to an instance attribute, in fact it's an SQL
  84. construct describing an operation on the database.
  85. When Django encounters an instance of ``F()``, it overrides the standard Python
  86. operators to create an encapsulated SQL expression; in this case, one which
  87. instructs the database to increment the database field represented by
  88. ``reporter.stories_filed``.
  89. Whatever value is or was on ``reporter.stories_filed``, Python never gets to
  90. know about it - it is dealt with entirely by the database. All Python does,
  91. through Django's ``F()`` class, is create the SQL syntax to refer to the field
  92. and describe the operation.
  93. .. note::
  94. In order to access the new value that has been saved in this way, the object
  95. will need to be reloaded::
  96. reporter = Reporters.objects.get(pk=reporter.pk)
  97. # Or, more succinctly:
  98. reporter.refresh_from_db()
  99. As well as being used in operations on single instances as above, ``F()`` can
  100. be used on ``QuerySets`` of object instances, with ``update()``. This reduces
  101. the two queries we were using above - the ``get()`` and the
  102. :meth:`~Model.save()` - to just one::
  103. reporter = Reporters.objects.filter(name='Tintin')
  104. reporter.update(stories_filed=F('stories_filed') + 1)
  105. We can also use :meth:`~django.db.models.query.QuerySet.update()` to increment
  106. the field value on multiple objects - which could be very much faster than
  107. pulling them all into Python from the database, looping over them, incrementing
  108. the field value of each one, and saving each one back to the database::
  109. Reporter.objects.all().update(stories_filed=F('stories_filed') + 1)
  110. ``F()`` therefore can offer performance advantages by:
  111. * getting the database, rather than Python, to do work
  112. * reducing the number of queries some operations require
  113. .. _avoiding-race-conditions-using-f:
  114. Avoiding race conditions using ``F()``
  115. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  116. Another useful benefit of ``F()`` is that having the database - rather than
  117. Python - update a field's value avoids a *race condition*.
  118. If two Python threads execute the code in the first example above, one thread
  119. could retrieve, increment, and save a field's value after the other has
  120. retrieved it from the database. The value that the second thread saves will be
  121. based on the original value; the work of the first thread will simply be lost.
  122. If the database is responsible for updating the field, the process is more
  123. robust: it will only ever update the field based on the value of the field in
  124. the database when the :meth:`~Model.save()` or ``update()`` is executed, rather
  125. than based on its value when the instance was retrieved.
  126. Using ``F()`` in filters
  127. ~~~~~~~~~~~~~~~~~~~~~~~~
  128. ``F()`` is also very useful in ``QuerySet`` filters, where they make it
  129. possible to filter a set of objects against criteria based on their field
  130. values, rather than on Python values.
  131. This is documented in :ref:`using F() expressions in queries
  132. <using-f-expressions-in-filters>`.
  133. .. _using-f-with-annotations:
  134. Using ``F()`` with annotations
  135. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  136. ``F()`` can be used to create dynamic fields on your models by combining
  137. different fields with arithmetic::
  138. company = Company.objects.annotate(
  139. chairs_needed=F('num_employees') - F('num_chairs'))
  140. If the fields that you're combining are of different types you'll need
  141. to tell Django what kind of field will be returned. Since ``F()`` does not
  142. directly support ``output_field`` you will need to wrap the expression with
  143. :class:`ExpressionWrapper`::
  144. from django.db.models import DateTimeField, ExpressionWrapper, F
  145. Ticket.objects.annotate(
  146. expires=ExpressionWrapper(
  147. F('active_at') + F('duration'), output_field=DateTimeField()))
  148. .. _func-expressions:
  149. ``Func()`` expressions
  150. ----------------------
  151. ``Func()`` expressions are the base type of all expressions that involve
  152. database functions like ``COALESCE`` and ``LOWER``, or aggregates like ``SUM``.
  153. They can be used directly::
  154. from django.db.models import Func, F
  155. queryset.annotate(field_lower=Func(F('field'), function='LOWER'))
  156. or they can be used to build a library of database functions::
  157. class Lower(Func):
  158. function = 'LOWER'
  159. queryset.annotate(field_lower=Lower('field'))
  160. But both cases will result in a queryset where each model is annotated with an
  161. extra attribute ``field_lower`` produced, roughly, from the following SQL::
  162. SELECT
  163. ...
  164. LOWER("db_table"."field") as "field_lower"
  165. See :doc:`database-functions` for a list of built-in database functions.
  166. The ``Func`` API is as follows:
  167. .. class:: Func(*expressions, **extra)
  168. .. attribute:: function
  169. A class attribute describing the function that will be generated.
  170. Specifically, the ``function`` will be interpolated as the ``function``
  171. placeholder within :attr:`template`. Defaults to ``None``.
  172. .. attribute:: template
  173. A class attribute, as a format string, that describes the SQL that is
  174. generated for this function. Defaults to
  175. ``'%(function)s(%(expressions)s)'``.
  176. .. attribute:: arg_joiner
  177. A class attribute that denotes the character used to join the list of
  178. ``expressions`` together. Defaults to ``', '``.
  179. .. attribute:: arity
  180. .. versionadded:: 1.10
  181. A class attribute that denotes the number of arguments the function
  182. accepts. If this attribute is set and the function is called with a
  183. different number of expressions, ``TypeError`` will be raised. Defaults
  184. to ``None``.
  185. .. method:: as_sql(compiler, connection, function=None, template=None, arg_joiner=None, **extra_context)
  186. Generates the SQL for the database function.
  187. The ``as_vendor()`` methods should use the ``function``, ``template``,
  188. ``arg_joiner``, and any other ``**extra_context`` parameters to
  189. customize the SQL as needed. For example:
  190. .. snippet::
  191. :filename: django/db/models/functions.py
  192. class ConcatPair(Func):
  193. ...
  194. function = 'CONCAT'
  195. ...
  196. def as_mysql(self, compiler, connection):
  197. return super(ConcatPair, self).as_sql(
  198. compiler, connection,
  199. function='CONCAT_WS',
  200. template="%(function)s('', %(expressions)s)",
  201. )
  202. .. versionchanged:: 1.10
  203. Support for the ``arg_joiner`` and ``**extra_context`` parameters
  204. was added.
  205. The ``*expressions`` argument is a list of positional expressions that the
  206. function will be applied to. The expressions will be converted to strings,
  207. joined together with ``arg_joiner``, and then interpolated into the ``template``
  208. as the ``expressions`` placeholder.
  209. Positional arguments can be expressions or Python values. Strings are
  210. assumed to be column references and will be wrapped in ``F()`` expressions
  211. while other values will be wrapped in ``Value()`` expressions.
  212. The ``**extra`` kwargs are ``key=value`` pairs that can be interpolated
  213. into the ``template`` attribute. The ``function``, ``template``, and
  214. ``arg_joiner`` keywords can be used to replace the attributes of the same name
  215. without having to define your own class. ``output_field`` can be used to define
  216. the expected return type.
  217. ``Aggregate()`` expressions
  218. ---------------------------
  219. An aggregate expression is a special case of a :ref:`Func() expression
  220. <func-expressions>` that informs the query that a ``GROUP BY`` clause
  221. is required. All of the :ref:`aggregate functions <aggregation-functions>`,
  222. like ``Sum()`` and ``Count()``, inherit from ``Aggregate()``.
  223. Since ``Aggregate``\s are expressions and wrap expressions, you can represent
  224. some complex computations::
  225. from django.db.models import Count
  226. Company.objects.annotate(
  227. managers_required=(Count('num_employees') / 4) + Count('num_managers'))
  228. The ``Aggregate`` API is as follows:
  229. .. class:: Aggregate(expression, output_field=None, **extra)
  230. .. attribute:: template
  231. A class attribute, as a format string, that describes the SQL that is
  232. generated for this aggregate. Defaults to
  233. ``'%(function)s( %(expressions)s )'``.
  234. .. attribute:: function
  235. A class attribute describing the aggregate function that will be
  236. generated. Specifically, the ``function`` will be interpolated as the
  237. ``function`` placeholder within :attr:`template`. Defaults to ``None``.
  238. The ``expression`` argument can be the name of a field on the model, or another
  239. expression. It will be converted to a string and used as the ``expressions``
  240. placeholder within the ``template``.
  241. The ``output_field`` argument requires a model field instance, like
  242. ``IntegerField()`` or ``BooleanField()``, into which Django will load the value
  243. after it's retrieved from the database. Usually no arguments are needed when
  244. instantiating the model field as any arguments relating to data validation
  245. (``max_length``, ``max_digits``, etc.) will not be enforced on the expression's
  246. output value.
  247. Note that ``output_field`` is only required when Django is unable to determine
  248. what field type the result should be. Complex expressions that mix field types
  249. should define the desired ``output_field``. For example, adding an
  250. ``IntegerField()`` and a ``FloatField()`` together should probably have
  251. ``output_field=FloatField()`` defined.
  252. The ``**extra`` kwargs are ``key=value`` pairs that can be interpolated
  253. into the ``template`` attribute.
  254. Creating your own Aggregate Functions
  255. -------------------------------------
  256. Creating your own aggregate is extremely easy. At a minimum, you need
  257. to define ``function``, but you can also completely customize the
  258. SQL that is generated. Here's a brief example::
  259. from django.db.models import Aggregate
  260. class Count(Aggregate):
  261. # supports COUNT(distinct field)
  262. function = 'COUNT'
  263. template = '%(function)s(%(distinct)s%(expressions)s)'
  264. def __init__(self, expression, distinct=False, **extra):
  265. super(Count, self).__init__(
  266. expression,
  267. distinct='DISTINCT ' if distinct else '',
  268. output_field=IntegerField(),
  269. **extra)
  270. ``Value()`` expressions
  271. -----------------------
  272. .. class:: Value(value, output_field=None)
  273. A ``Value()`` object represents the smallest possible component of an
  274. expression: a simple value. When you need to represent the value of an integer,
  275. boolean, or string within an expression, you can wrap that value within a
  276. ``Value()``.
  277. You will rarely need to use ``Value()`` directly. When you write the expression
  278. ``F('field') + 1``, Django implicitly wraps the ``1`` in a ``Value()``,
  279. allowing simple values to be used in more complex expressions. You will need to
  280. use ``Value()`` when you want to pass a string to an expression. Most
  281. expressions interpret a string argument as the name of a field, like
  282. ``Lower('name')``.
  283. The ``value`` argument describes the value to be included in the expression,
  284. such as ``1``, ``True``, or ``None``. Django knows how to convert these Python
  285. values into their corresponding database type.
  286. The ``output_field`` argument should be a model field instance, like
  287. ``IntegerField()`` or ``BooleanField()``, into which Django will load the value
  288. after it's retrieved from the database. Usually no arguments are needed when
  289. instantiating the model field as any arguments relating to data validation
  290. (``max_length``, ``max_digits``, etc.) will not be enforced on the expression's
  291. output value.
  292. ``ExpressionWrapper()`` expressions
  293. -----------------------------------
  294. .. class:: ExpressionWrapper(expression, output_field)
  295. ``ExpressionWrapper`` simply surrounds another expression and provides access
  296. to properties, such as ``output_field``, that may not be available on other
  297. expressions. ``ExpressionWrapper`` is necessary when using arithmetic on
  298. ``F()`` expressions with different types as described in
  299. :ref:`using-f-with-annotations`.
  300. Conditional expressions
  301. -----------------------
  302. Conditional expressions allow you to use :keyword:`if` ... :keyword:`elif` ...
  303. :keyword:`else` logic in queries. Django natively supports SQL ``CASE``
  304. expressions. For more details see :doc:`conditional-expressions`.
  305. Raw SQL expressions
  306. -------------------
  307. .. currentmodule:: django.db.models.expressions
  308. .. class:: RawSQL(sql, params, output_field=None)
  309. Sometimes database expressions can't easily express a complex ``WHERE`` clause.
  310. In these edge cases, use the ``RawSQL`` expression. For example::
  311. >>> from django.db.models.expressions import RawSQL
  312. >>> queryset.annotate(val=RawSQL("select col from sometable where othercol = %s", (someparam,)))
  313. These extra lookups may not be portable to different database engines (because
  314. you're explicitly writing SQL code) and violate the DRY principle, so you
  315. should avoid them if possible.
  316. .. warning::
  317. You should be very careful to escape any parameters that the user can
  318. control by using ``params`` in order to protect against :ref:`SQL injection
  319. attacks <sql-injection-protection>`.
  320. .. currentmodule:: django.db.models
  321. Technical Information
  322. =====================
  323. Below you'll find technical implementation details that may be useful to
  324. library authors. The technical API and examples below will help with
  325. creating generic query expressions that can extend the built-in functionality
  326. that Django provides.
  327. Expression API
  328. --------------
  329. Query expressions implement the :ref:`query expression API <query-expression>`,
  330. but also expose a number of extra methods and attributes listed below. All
  331. query expressions must inherit from ``Expression()`` or a relevant
  332. subclass.
  333. When a query expression wraps another expression, it is responsible for
  334. calling the appropriate methods on the wrapped expression.
  335. .. class:: Expression
  336. .. attribute:: contains_aggregate
  337. Tells Django that this expression contains an aggregate and that a
  338. ``GROUP BY`` clause needs to be added to the query.
  339. .. method:: resolve_expression(query=None, allow_joins=True, reuse=None, summarize=False, for_save=False)
  340. Provides the chance to do any pre-processing or validation of
  341. the expression before it's added to the query. ``resolve_expression()``
  342. must also be called on any nested expressions. A ``copy()`` of ``self``
  343. should be returned with any necessary transformations.
  344. ``query`` is the backend query implementation.
  345. ``allow_joins`` is a boolean that allows or denies the use of
  346. joins in the query.
  347. ``reuse`` is a set of reusable joins for multi-join scenarios.
  348. ``summarize`` is a boolean that, when ``True``, signals that the
  349. query being computed is a terminal aggregate query.
  350. .. method:: get_source_expressions()
  351. Returns an ordered list of inner expressions. For example::
  352. >>> Sum(F('foo')).get_source_expressions()
  353. [F('foo')]
  354. .. method:: set_source_expressions(expressions)
  355. Takes a list of expressions and stores them such that
  356. ``get_source_expressions()`` can return them.
  357. .. method:: relabeled_clone(change_map)
  358. Returns a clone (copy) of ``self``, with any column aliases relabeled.
  359. Column aliases are renamed when subqueries are created.
  360. ``relabeled_clone()`` should also be called on any nested expressions
  361. and assigned to the clone.
  362. ``change_map`` is a dictionary mapping old aliases to new aliases.
  363. Example::
  364. def relabeled_clone(self, change_map):
  365. clone = copy.copy(self)
  366. clone.expression = self.expression.relabeled_clone(change_map)
  367. return clone
  368. .. method:: convert_value(self, value, expression, connection, context)
  369. A hook allowing the expression to coerce ``value`` into a more
  370. appropriate type.
  371. .. method:: refs_aggregate(existing_aggregates)
  372. Returns a tuple containing the ``(aggregate, lookup_path)`` of the
  373. first aggregate that this expression (or any nested expression)
  374. references, or ``(False, ())`` if no aggregate is referenced.
  375. For example::
  376. queryset.filter(num_chairs__gt=F('sum__employees'))
  377. The ``F()`` expression here references a previous ``Sum()``
  378. computation which means that this filter expression should be
  379. added to the ``HAVING`` clause rather than the ``WHERE`` clause.
  380. In the majority of cases, returning the result of ``refs_aggregate``
  381. on any nested expression should be appropriate, as the necessary
  382. built-in expressions will return the correct values.
  383. .. method:: get_group_by_cols()
  384. Responsible for returning the list of columns references by
  385. this expression. ``get_group_by_cols()`` should be called on any
  386. nested expressions. ``F()`` objects, in particular, hold a reference
  387. to a column.
  388. .. method:: asc()
  389. Returns the expression ready to be sorted in ascending order.
  390. .. method:: desc()
  391. Returns the expression ready to be sorted in descending order.
  392. .. method:: reverse_ordering()
  393. Returns ``self`` with any modifications required to reverse the sort
  394. order within an ``order_by`` call. As an example, an expression
  395. implementing ``NULLS LAST`` would change its value to be
  396. ``NULLS FIRST``. Modifications are only required for expressions that
  397. implement sort order like ``OrderBy``. This method is called when
  398. :meth:`~django.db.models.query.QuerySet.reverse()` is called on a
  399. queryset.
  400. Writing your own Query Expressions
  401. ----------------------------------
  402. You can write your own query expression classes that use, and can integrate
  403. with, other query expressions. Let's step through an example by writing an
  404. implementation of the ``COALESCE`` SQL function, without using the built-in
  405. :ref:`Func() expressions <func-expressions>`.
  406. The ``COALESCE`` SQL function is defined as taking a list of columns or
  407. values. It will return the first column or value that isn't ``NULL``.
  408. We'll start by defining the template to be used for SQL generation and
  409. an ``__init__()`` method to set some attributes::
  410. import copy
  411. from django.db.models import Expression
  412. class Coalesce(Expression):
  413. template = 'COALESCE( %(expressions)s )'
  414. def __init__(self, expressions, output_field):
  415. super(Coalesce, self).__init__(output_field=output_field)
  416. if len(expressions) < 2:
  417. raise ValueError('expressions must have at least 2 elements')
  418. for expression in expressions:
  419. if not hasattr(expression, 'resolve_expression'):
  420. raise TypeError('%r is not an Expression' % expression)
  421. self.expressions = expressions
  422. We do some basic validation on the parameters, including requiring at least
  423. 2 columns or values, and ensuring they are expressions. We are requiring
  424. ``output_field`` here so that Django knows what kind of model field to assign
  425. the eventual result to.
  426. Now we implement the pre-processing and validation. Since we do not have
  427. any of our own validation at this point, we just delegate to the nested
  428. expressions::
  429. def resolve_expression(self, query=None, allow_joins=True, reuse=None, summarize=False, for_save=False):
  430. c = self.copy()
  431. c.is_summary = summarize
  432. for pos, expression in enumerate(self.expressions):
  433. c.expressions[pos] = expression.resolve_expression(query, allow_joins, reuse, summarize, for_save)
  434. return c
  435. Next, we write the method responsible for generating the SQL::
  436. def as_sql(self, compiler, connection, template=None):
  437. sql_expressions, sql_params = [], []
  438. for expression in self.expressions:
  439. sql, params = compiler.compile(expression)
  440. sql_expressions.append(sql)
  441. sql_params.extend(params)
  442. template = template or self.template
  443. data = {'expressions': ','.join(sql_expressions)}
  444. return template % data, params
  445. def as_oracle(self, compiler, connection):
  446. """
  447. Example of vendor specific handling (Oracle in this case).
  448. Let's make the function name lowercase.
  449. """
  450. return self.as_sql(compiler, connection, template='coalesce( %(expressions)s )')
  451. ``as_sql()`` methods can support custom keyword arguments, allowing
  452. ``as_vendorname()`` methods to override data used to generate the SQL string.
  453. Using ``as_sql()`` keyword arguments for customization is preferable to
  454. mutating ``self`` within ``as_vendorname()`` methods as the latter can lead to
  455. errors when running on different database backends. If your class relies on
  456. class attributes to define data, consider allowing overrides in your
  457. ``as_sql()`` method.
  458. We generate the SQL for each of the ``expressions`` by using the
  459. ``compiler.compile()`` method, and join the result together with commas.
  460. Then the template is filled out with our data and the SQL and parameters
  461. are returned.
  462. We've also defined a custom implementation that is specific to the Oracle
  463. backend. The ``as_oracle()`` function will be called instead of ``as_sql()``
  464. if the Oracle backend is in use.
  465. Finally, we implement the rest of the methods that allow our query expression
  466. to play nice with other query expressions::
  467. def get_source_expressions(self):
  468. return self.expressions
  469. def set_source_expressions(self, expressions):
  470. self.expressions = expressions
  471. Let's see how it works::
  472. >>> from django.db.models import F, Value, CharField
  473. >>> qs = Company.objects.annotate(
  474. ... tagline=Coalesce([
  475. ... F('motto'),
  476. ... F('ticker_name'),
  477. ... F('description'),
  478. ... Value('No Tagline')
  479. ... ], output_field=CharField()))
  480. >>> for c in qs:
  481. ... print("%s: %s" % (c.name, c.tagline))
  482. ...
  483. Google: Do No Evil
  484. Apple: AAPL
  485. Yahoo: Internet Company
  486. Django Software Foundation: No Tagline
  487. Adding support in third-party database backends
  488. -----------------------------------------------
  489. If you're using a database backend that uses a different SQL syntax for a
  490. certain function, you can add support for it by monkey patching a new method
  491. onto the function's class.
  492. Let's say we're writing a backend for Microsoft's SQL Server which uses the SQL
  493. ``LEN`` instead of ``LENGTH`` for the :class:`~functions.Length` function.
  494. We'll monkey patch a new method called ``as_sqlserver()`` onto the ``Length``
  495. class::
  496. from django.db.models.functions import Length
  497. def sqlserver_length(self, compiler, connection):
  498. return self.as_sql(compiler, connection, function='LEN')
  499. Length.as_sqlserver = sqlserver_length
  500. You can also customize the SQL using the ``template`` parameter of ``as_sql()``.
  501. We use ``as_sqlserver()`` because ``django.db.connection.vendor`` returns
  502. ``sqlserver`` for the backend.
  503. Third-party backends can register their functions in the top level
  504. ``__init__.py`` file of the backend package or in a top level ``expressions.py``
  505. file (or package) that is imported from the top level ``__init__.py``.
  506. For user projects wishing to patch the backend that they're using, this code
  507. should live in an :meth:`AppConfig.ready()<django.apps.AppConfig.ready>` method.