database-functions.txt 51 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598
  1. ==================
  2. Database Functions
  3. ==================
  4. .. module:: django.db.models.functions
  5. :synopsis: Database Functions
  6. The classes documented below provide a way for users to use functions provided
  7. by the underlying database as annotations, aggregations, or filters in Django.
  8. Functions are also :doc:`expressions <expressions>`, so they can be used and
  9. combined with other expressions like :ref:`aggregate functions
  10. <aggregation-functions>`.
  11. We'll be using the following model in examples of each function::
  12. class Author(models.Model):
  13. name = models.CharField(max_length=50)
  14. age = models.PositiveIntegerField(null=True, blank=True)
  15. alias = models.CharField(max_length=50, null=True, blank=True)
  16. goes_by = models.CharField(max_length=50, null=True, blank=True)
  17. We don't usually recommend allowing ``null=True`` for ``CharField`` since this
  18. allows the field to have two "empty values", but it's important for the
  19. ``Coalesce`` example below.
  20. .. _comparison-functions:
  21. Comparison and conversion functions
  22. ===================================
  23. ``Cast``
  24. --------
  25. .. class:: Cast(expression, output_field)
  26. Forces the result type of ``expression`` to be the one from ``output_field``.
  27. Usage example::
  28. >>> from django.db.models import FloatField
  29. >>> from django.db.models.functions import Cast
  30. >>> Value.objects.create(integer=4)
  31. >>> value = Value.objects.annotate(as_float=Cast('integer', FloatField())).get()
  32. >>> print(value.as_float)
  33. 4.0
  34. ``Coalesce``
  35. ------------
  36. .. class:: Coalesce(*expressions, **extra)
  37. Accepts a list of at least two field names or expressions and returns the
  38. first non-null value (note that an empty string is not considered a null
  39. value). Each argument must be of a similar type, so mixing text and numbers
  40. will result in a database error.
  41. Usage examples::
  42. >>> # Get a screen name from least to most public
  43. >>> from django.db.models import Sum, Value as V
  44. >>> from django.db.models.functions import Coalesce
  45. >>> Author.objects.create(name='Margaret Smith', goes_by='Maggie')
  46. >>> author = Author.objects.annotate(
  47. ... screen_name=Coalesce('alias', 'goes_by', 'name')).get()
  48. >>> print(author.screen_name)
  49. Maggie
  50. >>> # Prevent an aggregate Sum() from returning None
  51. >>> aggregated = Author.objects.aggregate(
  52. ... combined_age=Coalesce(Sum('age'), V(0)),
  53. ... combined_age_default=Sum('age'))
  54. >>> print(aggregated['combined_age'])
  55. 0
  56. >>> print(aggregated['combined_age_default'])
  57. None
  58. .. warning::
  59. A Python value passed to ``Coalesce`` on MySQL may be converted to an
  60. incorrect type unless explicitly cast to the correct database type:
  61. >>> from django.db.models import DateTimeField
  62. >>> from django.db.models.functions import Cast, Coalesce
  63. >>> from django.utils import timezone
  64. >>> now = timezone.now()
  65. >>> Coalesce('updated', Cast(now, DateTimeField()))
  66. ``Greatest``
  67. ------------
  68. .. class:: Greatest(*expressions, **extra)
  69. Accepts a list of at least two field names or expressions and returns the
  70. greatest value. Each argument must be of a similar type, so mixing text and
  71. numbers will result in a database error.
  72. Usage example::
  73. class Blog(models.Model):
  74. body = models.TextField()
  75. modified = models.DateTimeField(auto_now=True)
  76. class Comment(models.Model):
  77. body = models.TextField()
  78. modified = models.DateTimeField(auto_now=True)
  79. blog = models.ForeignKey(Blog, on_delete=models.CASCADE)
  80. >>> from django.db.models.functions import Greatest
  81. >>> blog = Blog.objects.create(body='Greatest is the best.')
  82. >>> comment = Comment.objects.create(body='No, Least is better.', blog=blog)
  83. >>> comments = Comment.objects.annotate(last_updated=Greatest('modified', 'blog__modified'))
  84. >>> annotated_comment = comments.get()
  85. ``annotated_comment.last_updated`` will be the most recent of ``blog.modified``
  86. and ``comment.modified``.
  87. .. warning::
  88. The behavior of ``Greatest`` when one or more expression may be ``null``
  89. varies between databases:
  90. - PostgreSQL: ``Greatest`` will return the largest non-null expression,
  91. or ``null`` if all expressions are ``null``.
  92. - SQLite, Oracle, and MySQL: If any expression is ``null``, ``Greatest``
  93. will return ``null``.
  94. The PostgreSQL behavior can be emulated using ``Coalesce`` if you know
  95. a sensible minimum value to provide as a default.
  96. ``Least``
  97. ---------
  98. .. class:: Least(*expressions, **extra)
  99. Accepts a list of at least two field names or expressions and returns the
  100. least value. Each argument must be of a similar type, so mixing text and numbers
  101. will result in a database error.
  102. .. warning::
  103. The behavior of ``Least`` when one or more expression may be ``null``
  104. varies between databases:
  105. - PostgreSQL: ``Least`` will return the smallest non-null expression,
  106. or ``null`` if all expressions are ``null``.
  107. - SQLite, Oracle, and MySQL: If any expression is ``null``, ``Least``
  108. will return ``null``.
  109. The PostgreSQL behavior can be emulated using ``Coalesce`` if you know
  110. a sensible maximum value to provide as a default.
  111. .. _date-functions:
  112. Date functions
  113. ==============
  114. We'll be using the following model in examples of each function::
  115. class Experiment(models.Model):
  116. start_datetime = models.DateTimeField()
  117. start_date = models.DateField(null=True, blank=True)
  118. start_time = models.TimeField(null=True, blank=True)
  119. end_datetime = models.DateTimeField(null=True, blank=True)
  120. end_date = models.DateField(null=True, blank=True)
  121. end_time = models.TimeField(null=True, blank=True)
  122. ``Extract``
  123. -----------
  124. .. class:: Extract(expression, lookup_name=None, tzinfo=None, **extra)
  125. Extracts a component of a date as a number.
  126. Takes an ``expression`` representing a ``DateField``, ``DateTimeField``,
  127. ``TimeField``, or ``DurationField`` and a ``lookup_name``, and returns the part
  128. of the date referenced by ``lookup_name`` as an ``IntegerField``.
  129. Django usually uses the databases' extract function, so you may use any
  130. ``lookup_name`` that your database supports. A ``tzinfo`` subclass, usually
  131. provided by ``pytz``, can be passed to extract a value in a specific timezone.
  132. Given the datetime ``2015-06-15 23:30:01.000321+00:00``, the built-in
  133. ``lookup_name``\s return:
  134. * "year": 2015
  135. * "quarter": 2
  136. * "month": 6
  137. * "day": 15
  138. * "week": 25
  139. * "week_day": 2
  140. * "hour": 23
  141. * "minute": 30
  142. * "second": 1
  143. If a different timezone like ``Australia/Melbourne`` is active in Django, then
  144. the datetime is converted to the timezone before the value is extracted. The
  145. timezone offset for Melbourne in the example date above is +10:00. The values
  146. returned when this timezone is active will be the same as above except for:
  147. * "day": 16
  148. * "week_day": 3
  149. * "hour": 9
  150. .. admonition:: ``week_day`` values
  151. The ``week_day`` ``lookup_type`` is calculated differently from most
  152. databases and from Python's standard functions. This function will return
  153. ``1`` for Sunday, ``2`` for Monday, through ``7`` for Saturday.
  154. The equivalent calculation in Python is::
  155. >>> from datetime import datetime
  156. >>> dt = datetime(2015, 6, 15)
  157. >>> (dt.isoweekday() % 7) + 1
  158. 2
  159. .. admonition:: ``week`` values
  160. The ``week`` ``lookup_type`` is calculated based on `ISO-8601
  161. <https://en.wikipedia.org/wiki/ISO-8601>`_, i.e.,
  162. a week starts on a Monday. The first week of a year is the one that
  163. contains the year's first Thursday, i.e. the first week has the majority
  164. (four or more) of its days in the year. The value returned is in the range
  165. 1 to 52 or 53.
  166. Each ``lookup_name`` above has a corresponding ``Extract`` subclass (listed
  167. below) that should typically be used instead of the more verbose equivalent,
  168. e.g. use ``ExtractYear(...)`` rather than ``Extract(..., lookup_name='year')``.
  169. Usage example::
  170. >>> from datetime import datetime
  171. >>> from django.db.models.functions import Extract
  172. >>> start = datetime(2015, 6, 15)
  173. >>> end = datetime(2015, 7, 2)
  174. >>> Experiment.objects.create(
  175. ... start_datetime=start, start_date=start.date(),
  176. ... end_datetime=end, end_date=end.date())
  177. >>> # Add the experiment start year as a field in the QuerySet.
  178. >>> experiment = Experiment.objects.annotate(
  179. ... start_year=Extract('start_datetime', 'year')).get()
  180. >>> experiment.start_year
  181. 2015
  182. >>> # How many experiments completed in the same year in which they started?
  183. >>> Experiment.objects.filter(
  184. ... start_datetime__year=Extract('end_datetime', 'year')).count()
  185. 1
  186. ``DateField`` extracts
  187. ~~~~~~~~~~~~~~~~~~~~~~
  188. .. class:: ExtractYear(expression, tzinfo=None, **extra)
  189. .. attribute:: lookup_name = 'year'
  190. .. class:: ExtractMonth(expression, tzinfo=None, **extra)
  191. .. attribute:: lookup_name = 'month'
  192. .. class:: ExtractDay(expression, tzinfo=None, **extra)
  193. .. attribute:: lookup_name = 'day'
  194. .. class:: ExtractWeekDay(expression, tzinfo=None, **extra)
  195. .. attribute:: lookup_name = 'week_day'
  196. .. class:: ExtractWeek(expression, tzinfo=None, **extra)
  197. .. attribute:: lookup_name = 'week'
  198. .. class:: ExtractQuarter(expression, tzinfo=None, **extra)
  199. .. attribute:: lookup_name = 'quarter'
  200. These are logically equivalent to ``Extract('date_field', lookup_name)``. Each
  201. class is also a ``Transform`` registered on ``DateField`` and ``DateTimeField``
  202. as ``__(lookup_name)``, e.g. ``__year``.
  203. Since ``DateField``\s don't have a time component, only ``Extract`` subclasses
  204. that deal with date-parts can be used with ``DateField``::
  205. >>> from datetime import datetime
  206. >>> from django.utils import timezone
  207. >>> from django.db.models.functions import (
  208. ... ExtractDay, ExtractMonth, ExtractQuarter, ExtractWeek,
  209. ... ExtractWeekDay, ExtractYear,
  210. ... )
  211. >>> start_2015 = datetime(2015, 6, 15, 23, 30, 1, tzinfo=timezone.utc)
  212. >>> end_2015 = datetime(2015, 6, 16, 13, 11, 27, tzinfo=timezone.utc)
  213. >>> Experiment.objects.create(
  214. ... start_datetime=start_2015, start_date=start_2015.date(),
  215. ... end_datetime=end_2015, end_date=end_2015.date())
  216. >>> Experiment.objects.annotate(
  217. ... year=ExtractYear('start_date'),
  218. ... quarter=ExtractQuarter('start_date'),
  219. ... month=ExtractMonth('start_date'),
  220. ... week=ExtractWeek('start_date'),
  221. ... day=ExtractDay('start_date'),
  222. ... weekday=ExtractWeekDay('start_date'),
  223. ... ).values('year', 'quarter', 'month', 'week', 'day', 'weekday').get(
  224. ... end_date__year=ExtractYear('start_date'),
  225. ... )
  226. {'year': 2015, 'quarter': 2, 'month': 6, 'week': 25, 'day': 15, 'weekday': 2}
  227. ``DateTimeField`` extracts
  228. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  229. In addition to the following, all extracts for ``DateField`` listed above may
  230. also be used on ``DateTimeField``\s .
  231. .. class:: ExtractHour(expression, tzinfo=None, **extra)
  232. .. attribute:: lookup_name = 'hour'
  233. .. class:: ExtractMinute(expression, tzinfo=None, **extra)
  234. .. attribute:: lookup_name = 'minute'
  235. .. class:: ExtractSecond(expression, tzinfo=None, **extra)
  236. .. attribute:: lookup_name = 'second'
  237. These are logically equivalent to ``Extract('datetime_field', lookup_name)``.
  238. Each class is also a ``Transform`` registered on ``DateTimeField`` as
  239. ``__(lookup_name)``, e.g. ``__minute``.
  240. ``DateTimeField`` examples::
  241. >>> from datetime import datetime
  242. >>> from django.utils import timezone
  243. >>> from django.db.models.functions import (
  244. ... ExtractDay, ExtractHour, ExtractMinute, ExtractMonth,
  245. ... ExtractQuarter, ExtractSecond, ExtractWeek, ExtractWeekDay,
  246. ... ExtractYear,
  247. ... )
  248. >>> start_2015 = datetime(2015, 6, 15, 23, 30, 1, tzinfo=timezone.utc)
  249. >>> end_2015 = datetime(2015, 6, 16, 13, 11, 27, tzinfo=timezone.utc)
  250. >>> Experiment.objects.create(
  251. ... start_datetime=start_2015, start_date=start_2015.date(),
  252. ... end_datetime=end_2015, end_date=end_2015.date())
  253. >>> Experiment.objects.annotate(
  254. ... year=ExtractYear('start_datetime'),
  255. ... quarter=ExtractQuarter('start_datetime'),
  256. ... month=ExtractMonth('start_datetime'),
  257. ... week=ExtractWeek('start_datetime'),
  258. ... day=ExtractDay('start_datetime'),
  259. ... weekday=ExtractWeekDay('start_datetime'),
  260. ... hour=ExtractHour('start_datetime'),
  261. ... minute=ExtractMinute('start_datetime'),
  262. ... second=ExtractSecond('start_datetime'),
  263. ... ).values(
  264. ... 'year', 'month', 'week', 'day', 'weekday', 'hour', 'minute', 'second',
  265. ... ).get(end_datetime__year=ExtractYear('start_datetime'))
  266. {'year': 2015, 'quarter': 2, 'month': 6, 'week': 25, 'day': 15, 'weekday': 2,
  267. 'hour': 23, 'minute': 30, 'second': 1}
  268. When :setting:`USE_TZ` is ``True`` then datetimes are stored in the database
  269. in UTC. If a different timezone is active in Django, the datetime is converted
  270. to that timezone before the value is extracted. The example below converts to
  271. the Melbourne timezone (UTC +10:00), which changes the day, weekday, and hour
  272. values that are returned::
  273. >>> import pytz
  274. >>> melb = pytz.timezone('Australia/Melbourne') # UTC+10:00
  275. >>> with timezone.override(melb):
  276. ... Experiment.objects.annotate(
  277. ... day=ExtractDay('start_datetime'),
  278. ... weekday=ExtractWeekDay('start_datetime'),
  279. ... hour=ExtractHour('start_datetime'),
  280. ... ).values('day', 'weekday', 'hour').get(
  281. ... end_datetime__year=ExtractYear('start_datetime'),
  282. ... )
  283. {'day': 16, 'weekday': 3, 'hour': 9}
  284. Explicitly passing the timezone to the ``Extract`` function behaves in the same
  285. way, and takes priority over an active timezone::
  286. >>> import pytz
  287. >>> melb = pytz.timezone('Australia/Melbourne')
  288. >>> Experiment.objects.annotate(
  289. ... day=ExtractDay('start_datetime', tzinfo=melb),
  290. ... weekday=ExtractWeekDay('start_datetime', tzinfo=melb),
  291. ... hour=ExtractHour('start_datetime', tzinfo=melb),
  292. ... ).values('day', 'weekday', 'hour').get(
  293. ... end_datetime__year=ExtractYear('start_datetime'),
  294. ... )
  295. {'day': 16, 'weekday': 3, 'hour': 9}
  296. ``Now``
  297. -------
  298. .. class:: Now()
  299. Returns the database server's current date and time when the query is executed,
  300. typically using the SQL ``CURRENT_TIMESTAMP``.
  301. Usage example::
  302. >>> from django.db.models.functions import Now
  303. >>> Article.objects.filter(published__lte=Now())
  304. <QuerySet [<Article: How to Django>]>
  305. .. admonition:: PostgreSQL considerations
  306. On PostgreSQL, the SQL ``CURRENT_TIMESTAMP`` returns the time that the
  307. current transaction started. Therefore for cross-database compatibility,
  308. ``Now()`` uses ``STATEMENT_TIMESTAMP`` instead. If you need the transaction
  309. timestamp, use :class:`django.contrib.postgres.functions.TransactionNow`.
  310. ``Trunc``
  311. ---------
  312. .. class:: Trunc(expression, kind, output_field=None, tzinfo=None, **extra)
  313. Truncates a date up to a significant component.
  314. When you only care if something happened in a particular year, hour, or day,
  315. but not the exact second, then ``Trunc`` (and its subclasses) can be useful to
  316. filter or aggregate your data. For example, you can use ``Trunc`` to calculate
  317. the number of sales per day.
  318. ``Trunc`` takes a single ``expression``, representing a ``DateField``,
  319. ``TimeField``, or ``DateTimeField``, a ``kind`` representing a date or time
  320. part, and an ``output_field`` that's either ``DateTimeField()``,
  321. ``TimeField()``, or ``DateField()``. It returns a datetime, date, or time
  322. depending on ``output_field``, with fields up to ``kind`` set to their minimum
  323. value. If ``output_field`` is omitted, it will default to the ``output_field``
  324. of ``expression``. A ``tzinfo`` subclass, usually provided by ``pytz``, can be
  325. passed to truncate a value in a specific timezone.
  326. Given the datetime ``2015-06-15 14:30:50.000321+00:00``, the built-in ``kind``\s
  327. return:
  328. * "year": 2015-01-01 00:00:00+00:00
  329. * "quarter": 2015-04-01 00:00:00+00:00
  330. * "month": 2015-06-01 00:00:00+00:00
  331. * "week": 2015-06-15 00:00:00+00:00
  332. * "day": 2015-06-15 00:00:00+00:00
  333. * "hour": 2015-06-15 14:00:00+00:00
  334. * "minute": 2015-06-15 14:30:00+00:00
  335. * "second": 2015-06-15 14:30:50+00:00
  336. If a different timezone like ``Australia/Melbourne`` is active in Django, then
  337. the datetime is converted to the new timezone before the value is truncated.
  338. The timezone offset for Melbourne in the example date above is +10:00. The
  339. values returned when this timezone is active will be:
  340. * "year": 2015-01-01 00:00:00+11:00
  341. * "quarter": 2015-04-01 00:00:00+10:00
  342. * "month": 2015-06-01 00:00:00+10:00
  343. * "week": 2015-06-16 00:00:00+10:00
  344. * "day": 2015-06-16 00:00:00+10:00
  345. * "hour": 2015-06-16 00:00:00+10:00
  346. * "minute": 2015-06-16 00:30:00+10:00
  347. * "second": 2015-06-16 00:30:50+10:00
  348. The year has an offset of +11:00 because the result transitioned into daylight
  349. saving time.
  350. Each ``kind`` above has a corresponding ``Trunc`` subclass (listed below) that
  351. should typically be used instead of the more verbose equivalent,
  352. e.g. use ``TruncYear(...)`` rather than ``Trunc(..., kind='year')``.
  353. The subclasses are all defined as transforms, but they aren't registered with
  354. any fields, because the obvious lookup names are already reserved by the
  355. ``Extract`` subclasses.
  356. Usage example::
  357. >>> from datetime import datetime
  358. >>> from django.db.models import Count, DateTimeField
  359. >>> from django.db.models.functions import Trunc
  360. >>> Experiment.objects.create(start_datetime=datetime(2015, 6, 15, 14, 30, 50, 321))
  361. >>> Experiment.objects.create(start_datetime=datetime(2015, 6, 15, 14, 40, 2, 123))
  362. >>> Experiment.objects.create(start_datetime=datetime(2015, 12, 25, 10, 5, 27, 999))
  363. >>> experiments_per_day = Experiment.objects.annotate(
  364. ... start_day=Trunc('start_datetime', 'day', output_field=DateTimeField())
  365. ... ).values('start_day').annotate(experiments=Count('id'))
  366. >>> for exp in experiments_per_day:
  367. ... print(exp['start_day'], exp['experiments'])
  368. ...
  369. 2015-06-15 00:00:00 2
  370. 2015-12-25 00:00:00 1
  371. >>> experiments = Experiment.objects.annotate(
  372. ... start_day=Trunc('start_datetime', 'day', output_field=DateTimeField())
  373. ... ).filter(start_day=datetime(2015, 6, 15))
  374. >>> for exp in experiments:
  375. ... print(exp.start_datetime)
  376. ...
  377. 2015-06-15 14:30:50.000321
  378. 2015-06-15 14:40:02.000123
  379. ``DateField`` truncation
  380. ~~~~~~~~~~~~~~~~~~~~~~~~
  381. .. class:: TruncYear(expression, output_field=None, tzinfo=None, **extra)
  382. .. attribute:: kind = 'year'
  383. .. class:: TruncMonth(expression, output_field=None, tzinfo=None, **extra)
  384. .. attribute:: kind = 'month'
  385. .. class:: TruncWeek(expression, output_field=None, tzinfo=None, **extra)
  386. .. versionadded:: 2.1
  387. Truncates to midnight on the Monday of the week.
  388. .. attribute:: kind = 'week'
  389. .. class:: TruncQuarter(expression, output_field=None, tzinfo=None, **extra)
  390. .. attribute:: kind = 'quarter'
  391. These are logically equivalent to ``Trunc('date_field', kind)``. They truncate
  392. all parts of the date up to ``kind`` which allows grouping or filtering dates
  393. with less precision. ``expression`` can have an ``output_field`` of either
  394. ``DateField`` or ``DateTimeField``.
  395. Since ``DateField``\s don't have a time component, only ``Trunc`` subclasses
  396. that deal with date-parts can be used with ``DateField``::
  397. >>> from datetime import datetime
  398. >>> from django.db.models import Count
  399. >>> from django.db.models.functions import TruncMonth, TruncYear
  400. >>> from django.utils import timezone
  401. >>> start1 = datetime(2014, 6, 15, 14, 30, 50, 321, tzinfo=timezone.utc)
  402. >>> start2 = datetime(2015, 6, 15, 14, 40, 2, 123, tzinfo=timezone.utc)
  403. >>> start3 = datetime(2015, 12, 31, 17, 5, 27, 999, tzinfo=timezone.utc)
  404. >>> Experiment.objects.create(start_datetime=start1, start_date=start1.date())
  405. >>> Experiment.objects.create(start_datetime=start2, start_date=start2.date())
  406. >>> Experiment.objects.create(start_datetime=start3, start_date=start3.date())
  407. >>> experiments_per_year = Experiment.objects.annotate(
  408. ... year=TruncYear('start_date')).values('year').annotate(
  409. ... experiments=Count('id'))
  410. >>> for exp in experiments_per_year:
  411. ... print(exp['year'], exp['experiments'])
  412. ...
  413. 2014-01-01 1
  414. 2015-01-01 2
  415. >>> import pytz
  416. >>> melb = pytz.timezone('Australia/Melbourne')
  417. >>> experiments_per_month = Experiment.objects.annotate(
  418. ... month=TruncMonth('start_datetime', tzinfo=melb)).values('month').annotate(
  419. ... experiments=Count('id'))
  420. >>> for exp in experiments_per_month:
  421. ... print(exp['month'], exp['experiments'])
  422. ...
  423. 2015-06-01 00:00:00+10:00 1
  424. 2016-01-01 00:00:00+11:00 1
  425. 2014-06-01 00:00:00+10:00 1
  426. ``DateTimeField`` truncation
  427. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  428. .. class:: TruncDate(expression, **extra)
  429. .. attribute:: lookup_name = 'date'
  430. .. attribute:: output_field = DateField()
  431. ``TruncDate`` casts ``expression`` to a date rather than using the built-in SQL
  432. truncate function. It's also registered as a transform on ``DateTimeField`` as
  433. ``__date``.
  434. .. class:: TruncTime(expression, **extra)
  435. .. attribute:: lookup_name = 'time'
  436. .. attribute:: output_field = TimeField()
  437. ``TruncTime`` casts ``expression`` to a time rather than using the built-in SQL
  438. truncate function. It's also registered as a transform on ``DateTimeField`` as
  439. ``__time``.
  440. .. class:: TruncDay(expression, output_field=None, tzinfo=None, **extra)
  441. .. attribute:: kind = 'day'
  442. .. class:: TruncHour(expression, output_field=None, tzinfo=None, **extra)
  443. .. attribute:: kind = 'hour'
  444. .. class:: TruncMinute(expression, output_field=None, tzinfo=None, **extra)
  445. .. attribute:: kind = 'minute'
  446. .. class:: TruncSecond(expression, output_field=None, tzinfo=None, **extra)
  447. .. attribute:: kind = 'second'
  448. These are logically equivalent to ``Trunc('datetime_field', kind)``. They
  449. truncate all parts of the date up to ``kind`` and allow grouping or filtering
  450. datetimes with less precision. ``expression`` must have an ``output_field`` of
  451. ``DateTimeField``.
  452. Usage example::
  453. >>> from datetime import date, datetime
  454. >>> from django.db.models import Count
  455. >>> from django.db.models.functions import (
  456. ... TruncDate, TruncDay, TruncHour, TruncMinute, TruncSecond,
  457. ... )
  458. >>> from django.utils import timezone
  459. >>> import pytz
  460. >>> start1 = datetime(2014, 6, 15, 14, 30, 50, 321, tzinfo=timezone.utc)
  461. >>> Experiment.objects.create(start_datetime=start1, start_date=start1.date())
  462. >>> melb = pytz.timezone('Australia/Melbourne')
  463. >>> Experiment.objects.annotate(
  464. ... date=TruncDate('start_datetime'),
  465. ... day=TruncDay('start_datetime', tzinfo=melb),
  466. ... hour=TruncHour('start_datetime', tzinfo=melb),
  467. ... minute=TruncMinute('start_datetime'),
  468. ... second=TruncSecond('start_datetime'),
  469. ... ).values('date', 'day', 'hour', 'minute', 'second').get()
  470. {'date': datetime.date(2014, 6, 15),
  471. 'day': datetime.datetime(2014, 6, 16, 0, 0, tzinfo=<DstTzInfo 'Australia/Melbourne' AEST+10:00:00 STD>),
  472. 'hour': datetime.datetime(2014, 6, 16, 0, 0, tzinfo=<DstTzInfo 'Australia/Melbourne' AEST+10:00:00 STD>),
  473. 'minute': 'minute': datetime.datetime(2014, 6, 15, 14, 30, tzinfo=<UTC>),
  474. 'second': datetime.datetime(2014, 6, 15, 14, 30, 50, tzinfo=<UTC>)
  475. }
  476. ``TimeField`` truncation
  477. ~~~~~~~~~~~~~~~~~~~~~~~~
  478. .. class:: TruncHour(expression, output_field=None, tzinfo=None, **extra)
  479. .. attribute:: kind = 'hour'
  480. .. class:: TruncMinute(expression, output_field=None, tzinfo=None, **extra)
  481. .. attribute:: kind = 'minute'
  482. .. class:: TruncSecond(expression, output_field=None, tzinfo=None, **extra)
  483. .. attribute:: kind = 'second'
  484. These are logically equivalent to ``Trunc('time_field', kind)``. They truncate
  485. all parts of the time up to ``kind`` which allows grouping or filtering times
  486. with less precision. ``expression`` can have an ``output_field`` of either
  487. ``TimeField`` or ``DateTimeField``.
  488. Since ``TimeField``\s don't have a date component, only ``Trunc`` subclasses
  489. that deal with time-parts can be used with ``TimeField``::
  490. >>> from datetime import datetime
  491. >>> from django.db.models import Count, TimeField
  492. >>> from django.db.models.functions import TruncHour
  493. >>> from django.utils import timezone
  494. >>> start1 = datetime(2014, 6, 15, 14, 30, 50, 321, tzinfo=timezone.utc)
  495. >>> start2 = datetime(2014, 6, 15, 14, 40, 2, 123, tzinfo=timezone.utc)
  496. >>> start3 = datetime(2015, 12, 31, 17, 5, 27, 999, tzinfo=timezone.utc)
  497. >>> Experiment.objects.create(start_datetime=start1, start_time=start1.time())
  498. >>> Experiment.objects.create(start_datetime=start2, start_time=start2.time())
  499. >>> Experiment.objects.create(start_datetime=start3, start_time=start3.time())
  500. >>> experiments_per_hour = Experiment.objects.annotate(
  501. ... hour=TruncHour('start_datetime', output_field=TimeField()),
  502. ... ).values('hour').annotate(experiments=Count('id'))
  503. >>> for exp in experiments_per_hour:
  504. ... print(exp['hour'], exp['experiments'])
  505. ...
  506. 14:00:00 2
  507. 17:00:00 1
  508. >>> import pytz
  509. >>> melb = pytz.timezone('Australia/Melbourne')
  510. >>> experiments_per_hour = Experiment.objects.annotate(
  511. ... hour=TruncHour('start_datetime', tzinfo=melb),
  512. ... ).values('hour').annotate(experiments=Count('id'))
  513. >>> for exp in experiments_per_hour:
  514. ... print(exp['hour'], exp['experiments'])
  515. ...
  516. 2014-06-16 00:00:00+10:00 2
  517. 2016-01-01 04:00:00+11:00 1
  518. .. _math-functions:
  519. Math Functions
  520. ==============
  521. .. versionadded:: 2.2
  522. We'll be using the following model in math function examples::
  523. class Vector(models.Model):
  524. x = models.FloatField()
  525. y = models.FloatField()
  526. ``Abs``
  527. -------
  528. .. class:: Abs(expression, **extra)
  529. Returns the absolute value of a numeric field or expression.
  530. Usage example::
  531. >>> from django.db.models.functions import Abs
  532. >>> Vector.objects.create(x=-0.5, y=1.1)
  533. >>> vector = Vector.objects.annotate(x_abs=Abs('x'), y_abs=Abs('y')).get()
  534. >>> vector.x_abs, vector.y_abs
  535. (0.5, 1.1)
  536. It can also be registered as a transform. For example::
  537. >>> from django.db.models import FloatField
  538. >>> from django.db.models.functions import Abs
  539. >>> FloatField.register_lookup(Abs)
  540. >>> # Get vectors inside the unit cube
  541. >>> vectors = Vector.objects.filter(x__abs__lt=1, y__abs__lt=1)
  542. ``ACos``
  543. --------
  544. .. class:: ACos(expression, **extra)
  545. Returns the arccosine of a numeric field or expression. The expression value
  546. must be within the range -1 to 1.
  547. Usage example::
  548. >>> from django.db.models.functions import ACos
  549. >>> Vector.objects.create(x=0.5, y=-0.9)
  550. >>> vector = Vector.objects.annotate(x_acos=ACos('x'), y_acos=ACos('y')).get()
  551. >>> vector.x_acos, vector.y_acos
  552. (1.0471975511965979, 2.6905658417935308)
  553. It can also be registered as a transform. For example::
  554. >>> from django.db.models import FloatField
  555. >>> from django.db.models.functions import ACos
  556. >>> FloatField.register_lookup(ACos)
  557. >>> # Get vectors whose arccosine is less than 1
  558. >>> vectors = Vector.objects.filter(x__acos__lt=1, y__acos__lt=1)
  559. ``ASin``
  560. --------
  561. .. class:: ASin(expression, **extra)
  562. Returns the arcsine of a numeric field or expression. The expression value must
  563. be in the range -1 to 1.
  564. Usage example::
  565. >>> from django.db.models.functions import ASin
  566. >>> Vector.objects.create(x=0, y=1)
  567. >>> vector = Vector.objects.annotate(x_asin=ASin('x'), y_asin=ASin('y')).get()
  568. >>> vector.x_asin, vector.y_asin
  569. (0.0, 1.5707963267948966)
  570. It can also be registered as a transform. For example::
  571. >>> from django.db.models import FloatField
  572. >>> from django.db.models.functions import ASin
  573. >>> FloatField.register_lookup(ASin)
  574. >>> # Get vectors whose arcsine is less than 1
  575. >>> vectors = Vector.objects.filter(x__asin__lt=1, y__asin__lt=1)
  576. ``ATan``
  577. --------
  578. .. class:: ATan(expression, **extra)
  579. Returns the arctangent of a numeric field or expression.
  580. Usage example::
  581. >>> from django.db.models.functions import ATan
  582. >>> Vector.objects.create(x=3.12, y=6.987)
  583. >>> vector = Vector.objects.annotate(x_atan=ATan('x'), y_atan=ATan('y')).get()
  584. >>> vector.x_atan, vector.y_atan
  585. (1.2606282660069106, 1.428638798133829)
  586. It can also be registered as a transform. For example::
  587. >>> from django.db.models import FloatField
  588. >>> from django.db.models.functions import ATan
  589. >>> FloatField.register_lookup(ATan)
  590. >>> # Get vectors whose arctangent is less than 2
  591. >>> vectors = Vector.objects.filter(x__atan__lt=2, y__atan__lt=2)
  592. ``ATan2``
  593. ---------
  594. .. class:: ATan2(expression1, expression2, **extra)
  595. Returns the arctangent of ``expression1 / expression2``.
  596. Usage example::
  597. >>> from django.db.models.functions import ATan2
  598. >>> Vector.objects.create(x=2.5, y=1.9)
  599. >>> vector = Vector.objects.annotate(atan2=ATan2('x', 'y')).get()
  600. >>> vector.atan2
  601. 0.9209258773829491
  602. ``Ceil``
  603. --------
  604. .. class:: Ceil(expression, **extra)
  605. Returns the smallest integer greater than or equal to a numeric field or
  606. expression.
  607. Usage example::
  608. >>> from django.db.models.functions import Ceil
  609. >>> Vector.objects.create(x=3.12, y=7.0)
  610. >>> vector = Vector.objects.annotate(x_ceil=Ceil('x'), y_ceil=Ceil('y')).get()
  611. >>> vector.x_ceil, vector.y_ceil
  612. (4.0, 7.0)
  613. It can also be registered as a transform. For example::
  614. >>> from django.db.models import FloatField
  615. >>> from django.db.models.functions import Ceil
  616. >>> FloatField.register_lookup(Ceil)
  617. >>> # Get vectors whose ceil is less than 10
  618. >>> vectors = Vector.objects.filter(x__ceil__lt=10, y__ceil__lt=10)
  619. ``Cos``
  620. -------
  621. .. class:: Cos(expression, **extra)
  622. Returns the cosine of a numeric field or expression.
  623. Usage example::
  624. >>> from django.db.models.functions import Cos
  625. >>> Vector.objects.create(x=-8.0, y=3.1415926)
  626. >>> vector = Vector.objects.annotate(x_cos=Cos('x'), y_cos=Cos('y')).get()
  627. >>> vector.x_cos, vector.y_cos
  628. (-0.14550003380861354, -0.9999999999999986)
  629. It can also be registered as a transform. For example::
  630. >>> from django.db.models import FloatField
  631. >>> from django.db.models.functions import Cos
  632. >>> FloatField.register_lookup(Cos)
  633. >>> # Get vectors whose cosine is less than 0.5
  634. >>> vectors = Vector.objects.filter(x__cos__lt=0.5, y__cos__lt=0.5)
  635. ``Cot``
  636. -------
  637. .. class:: Cot(expression, **extra)
  638. Returns the cotangent of a numeric field or expression.
  639. Usage example::
  640. >>> from django.db.models.functions import Cot
  641. >>> Vector.objects.create(x=12.0, y=1.0)
  642. >>> vector = Vector.objects.annotate(x_cot=Cot('x'), y_cot=Cot('y')).get()
  643. >>> vector.x_cot, vector.y_cot
  644. (-1.5726734063976826, 0.642092615934331)
  645. It can also be registered as a transform. For example::
  646. >>> from django.db.models import FloatField
  647. >>> from django.db.models.functions import Cot
  648. >>> FloatField.register_lookup(Cot)
  649. >>> # Get vectors whose cotangent is less than 1
  650. >>> vectors = Vector.objects.filter(x__cot__lt=1, y__cot__lt=1)
  651. ``Degrees``
  652. -----------
  653. .. class:: Degrees(expression, **extra)
  654. Converts a numeric field or expression from radians to degrees.
  655. Usage example::
  656. >>> from django.db.models.functions import Degrees
  657. >>> Vector.objects.create(x=-1.57, y=3.14)
  658. >>> vector = Vector.objects.annotate(x_d=Degrees('x'), y_d=Degrees('y')).get()
  659. >>> vector.x_d, vector.y_d
  660. (-89.95437383553924, 179.9087476710785)
  661. It can also be registered as a transform. For example::
  662. >>> from django.db.models import FloatField
  663. >>> from django.db.models.functions import Degrees
  664. >>> FloatField.register_lookup(Degrees)
  665. >>> # Get vectors whose degrees are less than 360
  666. >>> vectors = Vector.objects.filter(x__degrees__lt=360, y__degrees__lt=360)
  667. ``Exp``
  668. -------
  669. .. class:: Exp(expression, **extra)
  670. Returns the value of ``e`` (the natural logarithm base) raised to the power of
  671. a numeric field or expression.
  672. Usage example::
  673. >>> from django.db.models.functions import Exp
  674. >>> Vector.objects.create(x=5.4, y=-2.0)
  675. >>> vector = Vector.objects.annotate(x_exp=Exp('x'), y_exp=Exp('y')).get()
  676. >>> vector.x_exp, vector.y_exp
  677. (221.40641620418717, 0.1353352832366127)
  678. It can also be registered as a transform. For example::
  679. >>> from django.db.models import FloatField
  680. >>> from django.db.models.functions import Exp
  681. >>> FloatField.register_lookup(Exp)
  682. >>> # Get vectors whose exp() is greater than 10
  683. >>> vectors = Vector.objects.filter(x__exp__gt=10, y__exp__gt=10)
  684. ``Floor``
  685. ---------
  686. .. class:: Floor(expression, **extra)
  687. Returns the largest integer value not greater than a numeric field or
  688. expression.
  689. Usage example::
  690. >>> from django.db.models.functions import Floor
  691. >>> Vector.objects.create(x=5.4, y=-2.3)
  692. >>> vector = Vector.objects.annotate(x_floor=Floor('x'), y_floor=Floor('y')).get()
  693. >>> vector.x_floor, vector.y_floor
  694. (5.0, -3.0)
  695. It can also be registered as a transform. For example::
  696. >>> from django.db.models import FloatField
  697. >>> from django.db.models.functions import Floor
  698. >>> FloatField.register_lookup(Floor)
  699. >>> # Get vectors whose floor() is greater than 10
  700. >>> vectors = Vector.objects.filter(x__floor__gt=10, y__floor__gt=10)
  701. ``Ln``
  702. ------
  703. .. class:: Ln(expression, **extra)
  704. Returns the natural logarithm a numeric field or expression.
  705. Usage example::
  706. >>> from django.db.models.functions import Ln
  707. >>> Vector.objects.create(x=5.4, y=233.0)
  708. >>> vector = Vector.objects.annotate(x_ln=Ln('x'), y_ln=Ln('y')).get()
  709. >>> vector.x_ln, vector.y_ln
  710. (1.6863989535702288, 5.4510384535657)
  711. It can also be registered as a transform. For example::
  712. >>> from django.db.models import FloatField
  713. >>> from django.db.models.functions import Ln
  714. >>> FloatField.register_lookup(Ln)
  715. >>> # Get vectors whose value greater than e
  716. >>> vectors = Vector.objects.filter(x__ln__gt=1, y__ln__gt=1)
  717. ``Log``
  718. -------
  719. .. class:: Log(expression1, expression2, **extra)
  720. Accepts two numeric fields or expressions and returns the logarithm of
  721. the first to base of the second.
  722. Usage example::
  723. >>> from django.db.models.functions import Log
  724. >>> Vector.objects.create(x=2.0, y=4.0)
  725. >>> vector = Vector.objects.annotate(log=Log('x', 'y')).get()
  726. >>> vector.log
  727. 2.0
  728. ``Mod``
  729. -------
  730. .. class:: Mod(expression1, expression2, **extra)
  731. Accepts two numeric fields or expressions and returns the remainder of
  732. the first divided by the second (modulo operation).
  733. Usage example::
  734. >>> from django.db.models.functions import Mod
  735. >>> Vector.objects.create(x=5.4, y=2.3)
  736. >>> vector = Vector.objects.annotate(mod=Mod('x', 'y')).get()
  737. >>> vector.mod
  738. 0.8
  739. ``Pi``
  740. ------
  741. .. class:: Pi(**extra)
  742. Returns the value of the mathematical constant ``π``.
  743. ``Power``
  744. ---------
  745. .. class:: Power(expression1, expression2, **extra)
  746. Accepts two numeric fields or expressions and returns the value of the first
  747. raised to the power of the second.
  748. Usage example::
  749. >>> from django.db.models.functions import Power
  750. >>> Vector.objects.create(x=2, y=-2)
  751. >>> vector = Vector.objects.annotate(power=Power('x', 'y')).get()
  752. >>> vector.power
  753. 0.25
  754. ``Radians``
  755. -----------
  756. .. class:: Radians(expression, **extra)
  757. Converts a numeric field or expression from degrees to radians.
  758. Usage example::
  759. >>> from django.db.models.functions import Radians
  760. >>> Vector.objects.create(x=-90, y=180)
  761. >>> vector = Vector.objects.annotate(x_r=Radians('x'), y_r=Radians('y')).get()
  762. >>> vector.x_r, vector.y_r
  763. (-1.5707963267948966, 3.141592653589793)
  764. It can also be registered as a transform. For example::
  765. >>> from django.db.models import FloatField
  766. >>> from django.db.models.functions import Radians
  767. >>> FloatField.register_lookup(Radians)
  768. >>> # Get vectors whose radians are less than 1
  769. >>> vectors = Vector.objects.filter(x__radians__lt=1, y__radians__lt=1)
  770. ``Round``
  771. ---------
  772. .. class:: Round(expression, **extra)
  773. Rounds a numeric field or expression to the nearest integer. Whether half
  774. values are rounded up or down depends on the database.
  775. Usage example::
  776. >>> from django.db.models.functions import Round
  777. >>> Vector.objects.create(x=5.4, y=-2.3)
  778. >>> vector = Vector.objects.annotate(x_r=Round('x'), y_r=Round('y')).get()
  779. >>> vector.x_r, vector.y_r
  780. (5.0, -2.0)
  781. It can also be registered as a transform. For example::
  782. >>> from django.db.models import FloatField
  783. >>> from django.db.models.functions import Round
  784. >>> FloatField.register_lookup(Round)
  785. >>> # Get vectors whose round() is less than 20
  786. >>> vectors = Vector.objects.filter(x__round__lt=20, y__round__lt=20)
  787. ``Sin``
  788. -------
  789. .. class:: Sin(expression, **extra)
  790. Returns the sine of a numeric field or expression.
  791. Usage example::
  792. >>> from django.db.models.functions import Sin
  793. >>> Vector.objects.create(x=5.4, y=-2.3)
  794. >>> vector = Vector.objects.annotate(x_sin=Sin('x'), y_sin=Sin('y')).get()
  795. >>> vector.x_sin, vector.y_sin
  796. (-0.7727644875559871, -0.7457052121767203)
  797. It can also be registered as a transform. For example::
  798. >>> from django.db.models import FloatField
  799. >>> from django.db.models.functions import Sin
  800. >>> FloatField.register_lookup(Sin)
  801. >>> # Get vectors whose sin() is less than 0
  802. >>> vectors = Vector.objects.filter(x__sin__lt=0, y__sin__lt=0)
  803. ``Sqrt``
  804. --------
  805. .. class:: Sqrt(expression, **extra)
  806. Returns the square root of a nonnegative numeric field or expression.
  807. Usage example::
  808. >>> from django.db.models.functions import Sqrt
  809. >>> Vector.objects.create(x=4.0, y=12.0)
  810. >>> vector = Vector.objects.annotate(x_sqrt=Sqrt('x'), y_sqrt=Sqrt('y')).get()
  811. >>> vector.x_sqrt, vector.y_sqrt
  812. (2.0, 3.46410)
  813. It can also be registered as a transform. For example::
  814. >>> from django.db.models import FloatField
  815. >>> from django.db.models.functions import Sqrt
  816. >>> FloatField.register_lookup(Sqrt)
  817. >>> # Get vectors whose sqrt() is less than 5
  818. >>> vectors = Vector.objects.filter(x__sqrt__lt=5, y__sqrt__lt=5)
  819. ``Tan``
  820. -------
  821. .. class:: Tan(expression, **extra)
  822. Returns the tangent of a numeric field or expression.
  823. Usage example::
  824. >>> from django.db.models.functions import Tan
  825. >>> Vector.objects.create(x=0, y=12)
  826. >>> vector = Vector.objects.annotate(x_tan=Tan('x'), y_tan=Tan('y')).get()
  827. >>> vector.x_tan, vector.y_tan
  828. (0.0, -0.6358599286615808)
  829. It can also be registered as a transform. For example::
  830. >>> from django.db.models import FloatField
  831. >>> from django.db.models.functions import Tan
  832. >>> FloatField.register_lookup(Tan)
  833. >>> # Get vectors whose tangent is less than 0
  834. >>> vectors = Vector.objects.filter(x__tan__lt=0, y__tan__lt=0)
  835. .. _text-functions:
  836. Text functions
  837. ==============
  838. ``Chr``
  839. -------
  840. .. class:: Chr(expression, **extra)
  841. .. versionadded:: 2.1
  842. Accepts a numeric field or expression and returns the text representation of
  843. the expression as a single character. It works the same as Python's :func:`chr`
  844. function.
  845. Like :class:`Length`, it can be registered as a transform on ``IntegerField``.
  846. The default lookup name is ``chr``.
  847. Usage example::
  848. >>> from django.db.models.functions import Chr
  849. >>> Author.objects.create(name='Margaret Smith')
  850. >>> author = Author.objects.filter(name__startswith=Chr(ord('M'))).get()
  851. >>> print(author.name)
  852. Margaret Smith
  853. ``Concat``
  854. ----------
  855. .. class:: Concat(*expressions, **extra)
  856. Accepts a list of at least two text fields or expressions and returns the
  857. concatenated text. Each argument must be of a text or char type. If you want
  858. to concatenate a ``TextField()`` with a ``CharField()``, then be sure to tell
  859. Django that the ``output_field`` should be a ``TextField()``. Specifying an
  860. ``output_field`` is also required when concatenating a ``Value`` as in the
  861. example below.
  862. This function will never have a null result. On backends where a null argument
  863. results in the entire expression being null, Django will ensure that each null
  864. part is converted to an empty string first.
  865. Usage example::
  866. >>> # Get the display name as "name (goes_by)"
  867. >>> from django.db.models import CharField, Value as V
  868. >>> from django.db.models.functions import Concat
  869. >>> Author.objects.create(name='Margaret Smith', goes_by='Maggie')
  870. >>> author = Author.objects.annotate(
  871. ... screen_name=Concat(
  872. ... 'name', V(' ('), 'goes_by', V(')'),
  873. ... output_field=CharField()
  874. ... )
  875. ... ).get()
  876. >>> print(author.screen_name)
  877. Margaret Smith (Maggie)
  878. ``Left``
  879. --------
  880. .. class:: Left(expression, length, **extra)
  881. .. versionadded:: 2.1
  882. Returns the first ``length`` characters of the given text field or expression.
  883. Usage example::
  884. >>> from django.db.models.functions import Left
  885. >>> Author.objects.create(name='Margaret Smith')
  886. >>> author = Author.objects.annotate(first_initial=Left('name', 1)).get()
  887. >>> print(author.first_initial)
  888. M
  889. ``Length``
  890. ----------
  891. .. class:: Length(expression, **extra)
  892. Accepts a single text field or expression and returns the number of characters
  893. the value has. If the expression is null, then the length will also be null.
  894. Usage example::
  895. >>> # Get the length of the name and goes_by fields
  896. >>> from django.db.models.functions import Length
  897. >>> Author.objects.create(name='Margaret Smith')
  898. >>> author = Author.objects.annotate(
  899. ... name_length=Length('name'),
  900. ... goes_by_length=Length('goes_by')).get()
  901. >>> print(author.name_length, author.goes_by_length)
  902. (14, None)
  903. It can also be registered as a transform. For example::
  904. >>> from django.db.models import CharField
  905. >>> from django.db.models.functions import Length
  906. >>> CharField.register_lookup(Length)
  907. >>> # Get authors whose name is longer than 7 characters
  908. >>> authors = Author.objects.filter(name__length__gt=7)
  909. ``Lower``
  910. ---------
  911. .. class:: Lower(expression, **extra)
  912. Accepts a single text field or expression and returns the lowercase
  913. representation.
  914. It can also be registered as a transform as described in :class:`Length`.
  915. Usage example::
  916. >>> from django.db.models.functions import Lower
  917. >>> Author.objects.create(name='Margaret Smith')
  918. >>> author = Author.objects.annotate(name_lower=Lower('name')).get()
  919. >>> print(author.name_lower)
  920. margaret smith
  921. ``LPad``
  922. --------
  923. .. class:: LPad(expression, length, fill_text=Value(' '), **extra)
  924. .. versionadded:: 2.1
  925. Returns the value of the given text field or expression padded on the left side
  926. with ``fill_text`` so that the resulting value is ``length`` characters long.
  927. The default ``fill_text`` is a space.
  928. Usage example::
  929. >>> from django.db.models import Value
  930. >>> from django.db.models.functions import LPad
  931. >>> Author.objects.create(name='John', alias='j')
  932. >>> Author.objects.update(name=LPad('name', 8, Value('abc')))
  933. 1
  934. >>> print(Author.objects.get(alias='j').name)
  935. abcaJohn
  936. ``LTrim``
  937. ---------
  938. .. class:: LTrim(expression, **extra)
  939. .. versionadded:: 2.1
  940. Similar to :class:`~django.db.models.functions.Trim`, but removes only leading
  941. spaces.
  942. ``Ord``
  943. -------
  944. .. class:: Ord(expression, **extra)
  945. .. versionadded:: 2.1
  946. Accepts a single text field or expression and returns the Unicode code point
  947. value for the first character of that expression. It works similar to Python's
  948. :func:`ord` function, but an exception isn't raised if the expression is more
  949. than one character long.
  950. It can also be registered as a transform as described in :class:`Length`.
  951. The default lookup name is ``ord``.
  952. Usage example::
  953. >>> from django.db.models.functions import Ord
  954. >>> Author.objects.create(name='Margaret Smith')
  955. >>> author = Author.objects.annotate(name_code_point=Ord('name')).get()
  956. >>> print(author.name_code_point)
  957. 77
  958. ``Repeat``
  959. ----------
  960. .. class:: Repeat(expression, number, **extra)
  961. .. versionadded:: 2.1
  962. Returns the value of the given text field or expression repeated ``number``
  963. times.
  964. Usage example::
  965. >>> from django.db.models.functions import Repeat
  966. >>> Author.objects.create(name='John', alias='j')
  967. >>> Author.objects.update(name=Repeat('name', 3))
  968. 1
  969. >>> print(Author.objects.get(alias='j').name)
  970. JohnJohnJohn
  971. ``Replace``
  972. -----------
  973. .. class:: Replace(expression, text, replacement=Value(''), **extra)
  974. .. versionadded:: 2.1
  975. Replaces all occurrences of ``text`` with ``replacement`` in ``expression``.
  976. The default replacement text is the empty string. The arguments to the function
  977. are case-sensitive.
  978. Usage example::
  979. >>> from django.db.models import Value
  980. >>> from django.db.models.functions import Replace
  981. >>> Author.objects.create(name='Margaret Johnson')
  982. >>> Author.objects.create(name='Margaret Smith')
  983. >>> Author.objects.update(name=Replace('name', Value('Margaret'), Value('Margareth')))
  984. 2
  985. >>> Author.objects.values('name')
  986. <QuerySet [{'name': 'Margareth Johnson'}, {'name': 'Margareth Smith'}]>
  987. ``Right``
  988. ---------
  989. .. class:: Right(expression, length, **extra)
  990. .. versionadded:: 2.1
  991. Returns the last ``length`` characters of the given text field or expression.
  992. Usage example::
  993. >>> from django.db.models.functions import Right
  994. >>> Author.objects.create(name='Margaret Smith')
  995. >>> author = Author.objects.annotate(last_letter=Right('name', 1)).get()
  996. >>> print(author.last_letter)
  997. h
  998. ``RPad``
  999. --------
  1000. .. class:: RPad(expression, length, fill_text=Value(' '), **extra)
  1001. .. versionadded:: 2.1
  1002. Similar to :class:`~django.db.models.functions.LPad`, but pads on the right
  1003. side.
  1004. ``RTrim``
  1005. ---------
  1006. .. class:: RTrim(expression, **extra)
  1007. .. versionadded:: 2.1
  1008. Similar to :class:`~django.db.models.functions.Trim`, but removes only trailing
  1009. spaces.
  1010. ``StrIndex``
  1011. ------------
  1012. .. class:: StrIndex(string, substring, **extra)
  1013. Returns a positive integer corresponding to the 1-indexed position of the first
  1014. occurrence of ``substring`` inside ``string``, or 0 if ``substring`` is not
  1015. found.
  1016. Usage example::
  1017. >>> from django.db.models import Value as V
  1018. >>> from django.db.models.functions import StrIndex
  1019. >>> Author.objects.create(name='Margaret Smith')
  1020. >>> Author.objects.create(name='Smith, Margaret')
  1021. >>> Author.objects.create(name='Margaret Jackson')
  1022. >>> Author.objects.filter(name='Margaret Jackson').annotate(
  1023. ... smith_index=StrIndex('name', V('Smith'))
  1024. ... ).get().smith_index
  1025. 0
  1026. >>> authors = Author.objects.annotate(
  1027. ... smith_index=StrIndex('name', V('Smith'))
  1028. ... ).filter(smith_index__gt=0)
  1029. <QuerySet [<Author: Margaret Smith>, <Author: Smith, Margaret>]>
  1030. .. warning::
  1031. In MySQL, a database table's :ref:`collation<mysql-collation>` determines
  1032. whether string comparisons (such as the ``expression`` and ``substring`` of
  1033. this function) are case-sensitive. Comparisons are case-insensitive by
  1034. default.
  1035. ``Substr``
  1036. ----------
  1037. .. class:: Substr(expression, pos, length=None, **extra)
  1038. Returns a substring of length ``length`` from the field or expression starting
  1039. at position ``pos``. The position is 1-indexed, so the position must be greater
  1040. than 0. If ``length`` is ``None``, then the rest of the string will be returned.
  1041. Usage example::
  1042. >>> # Set the alias to the first 5 characters of the name as lowercase
  1043. >>> from django.db.models.functions import Lower, Substr
  1044. >>> Author.objects.create(name='Margaret Smith')
  1045. >>> Author.objects.update(alias=Lower(Substr('name', 1, 5)))
  1046. 1
  1047. >>> print(Author.objects.get(name='Margaret Smith').alias)
  1048. marga
  1049. ``Trim``
  1050. --------
  1051. .. class:: Trim(expression, **extra)
  1052. .. versionadded:: 2.1
  1053. Returns the value of the given text field or expression with leading and
  1054. trailing spaces removed.
  1055. Usage example::
  1056. >>> from django.db.models.functions import Trim
  1057. >>> Author.objects.create(name=' John ', alias='j')
  1058. >>> Author.objects.update(name=Trim('name'))
  1059. 1
  1060. >>> print(Author.objects.get(alias='j').name)
  1061. John
  1062. ``Upper``
  1063. ---------
  1064. .. class:: Upper(expression, **extra)
  1065. Accepts a single text field or expression and returns the uppercase
  1066. representation.
  1067. It can also be registered as a transform as described in :class:`Length`.
  1068. Usage example::
  1069. >>> from django.db.models.functions import Upper
  1070. >>> Author.objects.create(name='Margaret Smith')
  1071. >>> author = Author.objects.annotate(name_upper=Upper('name')).get()
  1072. >>> print(author.name_upper)
  1073. MARGARET SMITH
  1074. .. _window-functions:
  1075. Window functions
  1076. ================
  1077. There are a number of functions to use in a
  1078. :class:`~django.db.models.expressions.Window` expression for computing the rank
  1079. of elements or the :class:`Ntile` of some rows.
  1080. ``CumeDist``
  1081. ------------
  1082. .. class:: CumeDist(*expressions, **extra)
  1083. Calculates the cumulative distribution of a value within a window or partition.
  1084. The cumulative distribution is defined as the number of rows preceding or
  1085. peered with the current row divided by the total number of rows in the frame.
  1086. ``DenseRank``
  1087. -------------
  1088. .. class:: DenseRank(*expressions, **extra)
  1089. Equivalent to :class:`Rank` but does not have gaps.
  1090. ``FirstValue``
  1091. --------------
  1092. .. class:: FirstValue(expression, **extra)
  1093. Returns the value evaluated at the row that's the first row of the window
  1094. frame, or ``None`` if no such value exists.
  1095. ``Lag``
  1096. -------
  1097. .. class:: Lag(expression, offset=1, default=None, **extra)
  1098. Calculates the value offset by ``offset``, and if no row exists there, returns
  1099. ``default``.
  1100. ``default`` must have the same type as the ``expression``, however, this is
  1101. only validated by the database and not in Python.
  1102. ``LastValue``
  1103. -------------
  1104. .. class:: LastValue(expression, **extra)
  1105. Comparable to :class:`FirstValue`, it calculates the last value in a given
  1106. frame clause.
  1107. ``Lead``
  1108. --------
  1109. .. class:: Lead(expression, offset=1, default=None, **extra)
  1110. Calculates the leading value in a given :ref:`frame <window-frames>`. Both
  1111. ``offset`` and ``default`` are evaluated with respect to the current row.
  1112. ``default`` must have the same type as the ``expression``, however, this is
  1113. only validated by the database and not in Python.
  1114. ``NthValue``
  1115. ------------
  1116. .. class:: NthValue(expression, nth=1, **extra)
  1117. Computes the row relative to the offset ``nth`` (must be a positive value)
  1118. within the window. Returns ``None`` if no row exists.
  1119. Some databases may handle a nonexistent nth-value differently. For example,
  1120. Oracle returns an empty string rather than ``None`` for character-based
  1121. expressions. Django doesn't do any conversions in these cases.
  1122. ``Ntile``
  1123. ---------
  1124. .. class:: Ntile(num_buckets=1, **extra)
  1125. Calculates a partition for each of the rows in the frame clause, distributing
  1126. numbers as evenly as possible between 1 and ``num_buckets``. If the rows don't
  1127. divide evenly into a number of buckets, one or more buckets will be represented
  1128. more frequently.
  1129. ``PercentRank``
  1130. ---------------
  1131. .. class:: PercentRank(*expressions, **extra)
  1132. Computes the percentile rank of the rows in the frame clause. This
  1133. computation is equivalent to evaluating::
  1134. (rank - 1) / (total rows - 1)
  1135. The following table explains the calculation for the percentile rank of a row:
  1136. ===== ===== ==== ============ ============
  1137. Row # Value Rank Calculation Percent Rank
  1138. ===== ===== ==== ============ ============
  1139. 1 15 1 (1-1)/(7-1) 0.0000
  1140. 2 20 2 (2-1)/(7-1) 0.1666
  1141. 3 20 2 (2-1)/(7-1) 0.1666
  1142. 4 20 2 (2-1)/(7-1) 0.1666
  1143. 5 30 5 (5-1)/(7-1) 0.6666
  1144. 6 30 5 (5-1)/(7-1) 0.6666
  1145. 7 40 7 (7-1)/(7-1) 1.0000
  1146. ===== ===== ==== ============ ============
  1147. ``Rank``
  1148. --------
  1149. .. class:: Rank(*expressions, **extra)
  1150. Comparable to ``RowNumber``, this function ranks rows in the window. The
  1151. computed rank contains gaps. Use :class:`DenseRank` to compute rank without
  1152. gaps.
  1153. ``RowNumber``
  1154. -------------
  1155. .. class:: RowNumber(*expressions, **extra)
  1156. Computes the row number according to the ordering of either the frame clause
  1157. or the ordering of the whole query if there is no partitioning of the
  1158. :ref:`window frame <window-frames>`.