数据库函数

下面记录的类为用户提供了一种方法,可以在 Django 中使用底层数据库提供的函数作为注解、聚合或过滤器。函数也是 表达式,所以它们可以和其他表达式一起使用和组合,比如 聚合函数

我们将在每个函数的例子中使用以下模型:

  1. class Author(models.Model):
  2. name = models.CharField(max_length=50)
  3. age = models.PositiveIntegerField(null=True, blank=True)
  4. alias = models.CharField(max_length=50, null=True, blank=True)
  5. goes_by = models.CharField(max_length=50, null=True, blank=True)

我们通常不建议允许 null=TrueCharField,因为这允许字段有两个 Coalesce,但它对下面的 Coalesce 例子很重要。

比较和转换函数

Cast

class Cast(expression, output_field)

强制 expression 的结果类型为 output_field 的类型。

使用实例:

  1. >>> from django.db.models import FloatField
  2. >>> from django.db.models.functions import Cast
  3. >>> Author.objects.create(age=25, name='Margaret Smith')
  4. >>> author = Author.objects.annotate(
  5. ... age_as_float=Cast('age', output_field=FloatField()),
  6. ... ).get()
  7. >>> print(author.age_as_float)
  8. 25.0

Coalesce

class Coalesce(\expressions, **extra*)

接受至少两个字段名或表达式的列表,并返回第一个非空值(注意,空字符串不被视为空值)。每个参数必须是同样的类型,因此混合文本和数字将导致数据库错误。

使用实例:

  1. >>> # Get a screen name from least to most public
  2. >>> from django.db.models import Sum
  3. >>> from django.db.models.functions import Coalesce
  4. >>> Author.objects.create(name='Margaret Smith', goes_by='Maggie')
  5. >>> author = Author.objects.annotate(
  6. ... screen_name=Coalesce('alias', 'goes_by', 'name')).get()
  7. >>> print(author.screen_name)
  8. Maggie
  9. >>> # Prevent an aggregate Sum() from returning None
  10. >>> # The aggregate default argument uses Coalesce() under the hood.
  11. >>> aggregated = Author.objects.aggregate(
  12. ... combined_age=Sum('age'),
  13. ... combined_age_default=Sum('age', default=0),
  14. ... combined_age_coalesce=Coalesce(Sum('age'), 0),
  15. ... )
  16. >>> print(aggregated['combined_age'])
  17. None
  18. >>> print(aggregated['combined_age_default'])
  19. 0
  20. >>> print(aggregated['combined_age_coalesce'])
  21. 0

警告

在 MySQL 上传递给 Coalesce 的 Python 值可能会被转换为不正确的类型,除非明确地转换为正确的数据库类型:

  1. >>> from django.db.models import DateTimeField
  2. >>> from django.db.models.functions import Cast, Coalesce
  3. >>> from django.utils import timezone
  4. >>> now = timezone.now()
  5. >>> Coalesce('updated', Cast(now, DateTimeField()))

Collate

class Collate(expression, collation)

Takes an expression and a collation name to query against.

For example, to filter case-insensitively in SQLite:

  1. >>> Author.objects.filter(name=Collate(Value('john'), 'nocase'))
  2. <QuerySet [<Author: John>, <Author: john>]>

It can also be used when ordering, for example with PostgreSQL:

  1. >>> Author.objects.order_by(Collate('name', 'et-x-icu'))
  2. <QuerySet [<Author: Ursula>, <Author: Veronika>, <Author: Ülle>]>

Greatest

class Greatest(\expressions, **extra*)

接受至少两个字段名或表达式的列表,并返回最大的值。每个参数必须是同样的类型,所以混合文本和数字会导致数据库错误。

使用实例:

  1. class Blog(models.Model):
  2. body = models.TextField()
  3. modified = models.DateTimeField(auto_now=True)
  4. class Comment(models.Model):
  5. body = models.TextField()
  6. modified = models.DateTimeField(auto_now=True)
  7. blog = models.ForeignKey(Blog, on_delete=models.CASCADE)
  8. >>> from django.db.models.functions import Greatest
  9. >>> blog = Blog.objects.create(body='Greatest is the best.')
  10. >>> comment = Comment.objects.create(body='No, Least is better.', blog=blog)
  11. >>> comments = Comment.objects.annotate(last_updated=Greatest('modified', 'blog__modified'))
  12. >>> annotated_comment = comments.get()

annotated_comment.last_updated 将是 blog.modifiedcomment.modified 中最近的。

警告

当一个或多个表达式可能为 null 时,Greatest 的行为在不同的数据库之间有所不同。

  • PostgreSQL:Greatest 将返回最大的非空表达式,如果所有表达式都是 null,则返回 null
  • SQLite、Oracle 和 MySQL。如果任何表达式是 nullGreatest 将返回 null

如果你知道一个合理的最小值作为默认值,可以使用 Coalesce 来模拟 PostgreSQL 的行为。

JSONObject

class JSONObject(\*fields*)

Takes a list of key-value pairs and returns a JSON object containing those pairs.

使用实例:

  1. >>> from django.db.models import F
  2. >>> from django.db.models.functions import JSONObject, Lower
  3. >>> Author.objects.create(name='Margaret Smith', alias='msmith', age=25)
  4. >>> author = Author.objects.annotate(json_object=JSONObject(
  5. ... name=Lower('name'),
  6. ... alias='alias',
  7. ... age=F('age') * 2,
  8. ... )).get()
  9. >>> author.json_object
  10. {'name': 'margaret smith', 'alias': 'msmith', 'age': 50}

Least

class Least(\expressions, **extra*)

接受至少两个字段名或表达式的列表,并返回最小值。每个参数必须是同样的类型,因此混合文本和数字将导致数据库错误。

警告

当一个或多个表达式可能是 null 时,Least 的行为在不同的数据库之间有所不同。

  • PostgreSQL:Least 将返回最小的非空表达式,如果所有表达式都是 null,则返回 null
  • SQLite、Oracle 和 MySQL。如果任何表达式是 nullLeast 将返回 null

如果你知道一个合理的最大值作为默认值,可以使用` Coalesce` 来模拟 PostgreSQL 的行为。

NullIf

class NullIf(expression1, expression2)

接受两个表达式,如果相等则返回 None,否则返回 expression1

关于 Oracle 的注意事项

由于 Oracle 惯例,当表达式为 CharField 类型时,该函数返回空字符串而不是 None

在 Oracle 上禁止将 Value(None) 传递给 expression1,因为 Oracle 不接受 NULL 作为第一个参数。

日期函数

我们将在每个函数的例子中使用以下模型:

  1. class Experiment(models.Model):
  2. start_datetime = models.DateTimeField()
  3. start_date = models.DateField(null=True, blank=True)
  4. start_time = models.TimeField(null=True, blank=True)
  5. end_datetime = models.DateTimeField(null=True, blank=True)
  6. end_date = models.DateField(null=True, blank=True)
  7. end_time = models.TimeField(null=True, blank=True)

Extract

class Extract(expression, lookup_name=None, tzinfo=None, \*extra*)

提取日期的一个组成部分作为一个数字。

Takes an expression representing a DateField, DateTimeField, TimeField, or DurationField and a lookup_name, and returns the part of the date referenced by lookup_name as an IntegerField. Django usually uses the databases’ extract function, so you may use any lookup_name that your database supports. A tzinfo subclass, usually provided by zoneinfo, can be passed to extract a value in a specific timezone.

给定日期时间 2015-06-15 23:30:01.000321+00:00,内置的 lookup_name 返回。

  • “year”: 2015
  • “iso_year”: 2015
  • “quarter”: 2
  • “month”: 6
  • “day”: 15
  • “week”: 25
  • “week_day”: 2
  • “iso_week_day”: 1
  • “hour”: 23
  • “minute”: 30
  • “second”: 1

如果在 Django 中使用了不同的时区,比如 Australia/Melbourne ,那么在提取值之前,日期时间会被转换为该时区。在上面的例子中,墨尔本的时区偏移是 +10:00。当这个时区被激活时,返回的值将与上述相同,除了:

  • “day”: 16
  • “week_day”: 3
  • “iso_week_day”: 2
  • “hour”: 9

week_day

week_day lookup_type 的计算方式与大多数数据库和 Python 的标准函数不同。这个函数将返回星期日的 1,星期一的 2,到星期六的 7

在 Python 中的等价计算是:

  1. >>> from datetime import datetime
  2. >>> dt = datetime(2015, 6, 15)
  3. >>> (dt.isoweekday() % 7) + 1
  4. 2

week

The week lookup_type is calculated based on ISO-8601, i.e., a week starts on a Monday. The first week of a year is the one that contains the year’s first Thursday, i.e. the first week has the majority (four or more) of its days in the year. The value returned is in the range 1 to 52 or 53.

上面的每个 lookup_name 都有一个相应的 Extract 子类(下面列出的),通常应该用这个子类来代替比较啰嗦的等价物,例如,使用 ExtractYear(...) 而不是 Extract(...,lookup_name='year')

使用实例:

  1. >>> from datetime import datetime
  2. >>> from django.db.models.functions import Extract
  3. >>> start = datetime(2015, 6, 15)
  4. >>> end = datetime(2015, 7, 2)
  5. >>> Experiment.objects.create(
  6. ... start_datetime=start, start_date=start.date(),
  7. ... end_datetime=end, end_date=end.date())
  8. >>> # Add the experiment start year as a field in the QuerySet.
  9. >>> experiment = Experiment.objects.annotate(
  10. ... start_year=Extract('start_datetime', 'year')).get()
  11. >>> experiment.start_year
  12. 2015
  13. >>> # How many experiments completed in the same year in which they started?
  14. >>> Experiment.objects.filter(
  15. ... start_datetime__year=Extract('end_datetime', 'year')).count()
  16. 1

DateField 提取

class ExtractYear(expression, tzinfo=None, \*extra*)

  • lookup_name = 'year'

class ExtractIsoYear(expression, tzinfo=None, \*extra*)

返回 ISO-8601 的周号年份。

  • lookup_name = 'iso_year'

class ExtractMonth(expression, tzinfo=None, \*extra*)

  • lookup_name = 'month'

class ExtractDay(expression, tzinfo=None, \*extra*)

  • lookup_name = 'day'

class ExtractWeekDay(expression, tzinfo=None, \*extra*)

  • lookup_name = 'week_day'

class ExtractIsoWeekDay(expression, tzinfo=None, \*extra*)

返回 ISO-8601 的星期日,第 1 天是星期一,第 7 天是星期天。

  • lookup_name = 'iso_week_day'

class ExtractWeek(expression, tzinfo=None, \*extra*)

  • lookup_name = 'week'

class ExtractQuarter(expression, tzinfo=None, \*extra*)

  • lookup_name = 'quarter'

这些类在逻辑上等同于 Extract('date_field', lookup_name)。每个类也是一个 TransformDateFieldDateTimeField 上注册为 __(lookup_name)` ,例如 __year

由于 DateField 没有时间部分,只有处理日期部分的 Extract 子类才能与 DateField 使用:

  1. >>> from datetime import datetime, timezone
  2. >>> from django.db.models.functions import (
  3. ... ExtractDay, ExtractMonth, ExtractQuarter, ExtractWeek,
  4. ... ExtractIsoWeekDay, ExtractWeekDay, ExtractIsoYear, ExtractYear,
  5. ... )
  6. >>> start_2015 = datetime(2015, 6, 15, 23, 30, 1, tzinfo=timezone.utc)
  7. >>> end_2015 = datetime(2015, 6, 16, 13, 11, 27, tzinfo=timezone.utc)
  8. >>> Experiment.objects.create(
  9. ... start_datetime=start_2015, start_date=start_2015.date(),
  10. ... end_datetime=end_2015, end_date=end_2015.date())
  11. >>> Experiment.objects.annotate(
  12. ... year=ExtractYear('start_date'),
  13. ... isoyear=ExtractIsoYear('start_date'),
  14. ... quarter=ExtractQuarter('start_date'),
  15. ... month=ExtractMonth('start_date'),
  16. ... week=ExtractWeek('start_date'),
  17. ... day=ExtractDay('start_date'),
  18. ... weekday=ExtractWeekDay('start_date'),
  19. ... isoweekday=ExtractIsoWeekDay('start_date'),
  20. ... ).values(
  21. ... 'year', 'isoyear', 'quarter', 'month', 'week', 'day', 'weekday',
  22. ... 'isoweekday',
  23. ... ).get(end_date__year=ExtractYear('start_date'))
  24. {'year': 2015, 'isoyear': 2015, 'quarter': 2, 'month': 6, 'week': 25,
  25. 'day': 15, 'weekday': 2, 'isoweekday': 1}

DateTimeField 提取

除以下内容外,上述 DateField 的所有提取物也可用于``DateTimeField``。

class ExtractHour(expression, tzinfo=None, \*extra*)

  • lookup_name = 'hour'

class ExtractMinute(expression, tzinfo=None, \*extra*)

  • lookup_name = 'minute'

class ExtractSecond(expression, tzinfo=None, \*extra*)

  • lookup_name = 'second'

这些类在逻辑上等同于 Extract('datetime_field', lookup_name)。每个类也是一个 TransformDateTimeField 上注册为 __(lookup_name),例如 __minute

DateTimeField 例子:

  1. >>> from datetime import datetime, timezone
  2. >>> from django.db.models.functions import (
  3. ... ExtractDay, ExtractHour, ExtractMinute, ExtractMonth,
  4. ... ExtractQuarter, ExtractSecond, ExtractWeek, ExtractIsoWeekDay,
  5. ... ExtractWeekDay, ExtractIsoYear, ExtractYear,
  6. ... )
  7. >>> start_2015 = datetime(2015, 6, 15, 23, 30, 1, tzinfo=timezone.utc)
  8. >>> end_2015 = datetime(2015, 6, 16, 13, 11, 27, tzinfo=timezone.utc)
  9. >>> Experiment.objects.create(
  10. ... start_datetime=start_2015, start_date=start_2015.date(),
  11. ... end_datetime=end_2015, end_date=end_2015.date())
  12. >>> Experiment.objects.annotate(
  13. ... year=ExtractYear('start_datetime'),
  14. ... isoyear=ExtractIsoYear('start_datetime'),
  15. ... quarter=ExtractQuarter('start_datetime'),
  16. ... month=ExtractMonth('start_datetime'),
  17. ... week=ExtractWeek('start_datetime'),
  18. ... day=ExtractDay('start_datetime'),
  19. ... weekday=ExtractWeekDay('start_datetime'),
  20. ... isoweekday=ExtractIsoWeekDay('start_datetime'),
  21. ... hour=ExtractHour('start_datetime'),
  22. ... minute=ExtractMinute('start_datetime'),
  23. ... second=ExtractSecond('start_datetime'),
  24. ... ).values(
  25. ... 'year', 'isoyear', 'month', 'week', 'day',
  26. ... 'weekday', 'isoweekday', 'hour', 'minute', 'second',
  27. ... ).get(end_datetime__year=ExtractYear('start_datetime'))
  28. {'year': 2015, 'isoyear': 2015, 'quarter': 2, 'month': 6, 'week': 25,
  29. 'day': 15, 'weekday': 2, 'isoweekday': 1, 'hour': 23, 'minute': 30,
  30. 'second': 1}

USE_TZTrue 时,数据库中的日期时间是以 UTC 存储的。如果在 Django 中使用了不同的时区,那么在提取值之前,日期时间会被转换为该时区。下面的例子将转换为墨尔本时区(UTC +10:00),从而改变了返回的日期、星期和小时值:

  1. >>> from django.utils import timezone
  2. >>> import zoneinfo
  3. >>> melb = zoneinfo.ZoneInfo('Australia/Melbourne') # UTC+10:00
  4. >>> with timezone.override(melb):
  5. ... Experiment.objects.annotate(
  6. ... day=ExtractDay('start_datetime'),
  7. ... weekday=ExtractWeekDay('start_datetime'),
  8. ... isoweekday=ExtractIsoWeekDay('start_datetime'),
  9. ... hour=ExtractHour('start_datetime'),
  10. ... ).values('day', 'weekday', 'isoweekday', 'hour').get(
  11. ... end_datetime__year=ExtractYear('start_datetime'),
  12. ... )
  13. {'day': 16, 'weekday': 3, 'isoweekday': 2, 'hour': 9}

明确地将时区传递给 Extract 函数的行为与此相同,并优先于活动时区:

  1. >>> import zoneinfo
  2. >>> melb = zoneinfo.ZoneInfo('Australia/Melbourne')
  3. >>> Experiment.objects.annotate(
  4. ... day=ExtractDay('start_datetime', tzinfo=melb),
  5. ... weekday=ExtractWeekDay('start_datetime', tzinfo=melb),
  6. ... isoweekday=ExtractIsoWeekDay('start_datetime', tzinfo=melb),
  7. ... hour=ExtractHour('start_datetime', tzinfo=melb),
  8. ... ).values('day', 'weekday', 'isoweekday', 'hour').get(
  9. ... end_datetime__year=ExtractYear('start_datetime'),
  10. ... )
  11. {'day': 16, 'weekday': 3, 'isoweekday': 2, 'hour': 9}

Now

class Now

返回数据库服务器执行查询时的当前日期和时间,通常使用 SQL CURRENT_TIMESTAMP

使用实例:

  1. >>> from django.db.models.functions import Now
  2. >>> Article.objects.filter(published__lte=Now())
  3. <QuerySet [<Article: How to Django>]>

PostgreSQL 的注意事项

在 PostgreSQL 中,SQL CURRENT_TIMESTAMP 返回的是当前事务开始的时间,因此为了跨数据库的兼容性,Now() 使用 STATEMENT_TIMESTAMP 代替。因此为了跨数据库的兼容性,Now() 使用 STATEMENT_TIMESTAMP 代替。如果需要事务时间戳,可以使用 django.contrib.postgres.function.TransactionNow

Trunc

class Trunc(expression, kind, output_field=None, tzinfo=None, is_dst=None, \*extra*)

将一个日期截断到一个重要的部分。

当你只关心某事是否发生在某年、某小时或某天,而不关心确切的秒数时,那么 Trunc (及其子类)可以用来过滤或汇总你的数据。例如,你可以使用 Trunc 来计算每天的销售数量。

Trunc takes a single expression, representing a DateField, TimeField, or DateTimeField, a kind representing a date or time part, and an output_field that’s either DateTimeField(), TimeField(), or DateField(). It returns a datetime, date, or time depending on output_field, with fields up to kind set to their minimum value. If output_field is omitted, it will default to the output_field of expression. A tzinfo subclass, usually provided by zoneinfo, can be passed to truncate a value in a specific timezone.

4.0 版后已移除: is_dst 参数表示 pytz 是否应该解释夏令时中不存在的和模糊的日期。默认情况下(当 is_dst=None),pytz 会对这种日期时间产生异常。

is_dst 参数已被废弃,将在 Django 5.0 中删除。

给定日期时间 2015-06-15 14:30:50.000321+00:00,内置 kind 返回:

  • “year”: 2015-01-01 00:00:00+00:00
  • “quarter”: 2015-04-01 00:00:00+00:00
  • “month”: 2015-06-01 00:00:00+00:00
  • “week”: 2015-06-15 00:00:00+00:00
  • “day”: 2015-06-15 00:00:00+00:00
  • “hour”: 2015-06-15 14:00:00+00:00
  • “minute”: 2015-06-15 14:30:00+00:00
  • “second”: 2015-06-15 14:30:50+00:00

如果在 Django 中使用了不同的时区,比如 Australia/Melbourne,那么日期时间会在被截断之前转换为新的时区。在上面的例子中,墨尔本的时区偏移是 +10:00。当这个时区被激活时,返回的值将是:

  • “year”: 2015-01-01 00:00:00+11:00
  • “quarter”: 2015-04-01 00:00:00+10:00
  • “month”: 2015-06-01 00:00:00+10:00
  • “week”: 2015-06-16 00:00:00+10:00
  • “day”: 2015-06-16 00:00:00+10:00
  • “hour”: 2015-06-16 00:00:00+10:00
  • “minute”: 2015-06-16 00:30:00+10:00
  • “second”: 2015-06-16 00:30:50+10:00

年的偏移量为 +11:00,因为结果过渡到夏令时。

以上每个 kind 都有一个对应的 Trunc 子类(下面列出的),通常应该用这个子类来代替比较啰嗦的等价物,例如使用 TruncYear(...) 而不是 Trunc(...,kind='year')

子类都被定义为变换,但它们没有注册任何字段,因为查找名称已经被 Extract 子类保留。

使用实例:

  1. >>> from datetime import datetime
  2. >>> from django.db.models import Count, DateTimeField
  3. >>> from django.db.models.functions import Trunc
  4. >>> Experiment.objects.create(start_datetime=datetime(2015, 6, 15, 14, 30, 50, 321))
  5. >>> Experiment.objects.create(start_datetime=datetime(2015, 6, 15, 14, 40, 2, 123))
  6. >>> Experiment.objects.create(start_datetime=datetime(2015, 12, 25, 10, 5, 27, 999))
  7. >>> experiments_per_day = Experiment.objects.annotate(
  8. ... start_day=Trunc('start_datetime', 'day', output_field=DateTimeField())
  9. ... ).values('start_day').annotate(experiments=Count('id'))
  10. >>> for exp in experiments_per_day:
  11. ... print(exp['start_day'], exp['experiments'])
  12. ...
  13. 2015-06-15 00:00:00 2
  14. 2015-12-25 00:00:00 1
  15. >>> experiments = Experiment.objects.annotate(
  16. ... start_day=Trunc('start_datetime', 'day', output_field=DateTimeField())
  17. ... ).filter(start_day=datetime(2015, 6, 15))
  18. >>> for exp in experiments:
  19. ... print(exp.start_datetime)
  20. ...
  21. 2015-06-15 14:30:50.000321
  22. 2015-06-15 14:40:02.000123

DateField 截断

class TruncYear(expression, output_field=None, tzinfo=None, is_dst=None, \*extra*)

  • kind = 'year'

class TruncMonth(expression, output_field=None, tzinfo=None, is_dst=None, \*extra*)

  • kind = 'month'

class TruncWeek(expression, output_field=None, tzinfo=None, is_dst=None, \*extra*)

截断到每周一的午夜。

  • kind = 'week'

class TruncQuarter(expression, output_field=None, tzinfo=None, is_dst=None, \*extra*)

  • kind = 'quarter'

4.0 版后已移除: is_dst 参数已被废弃,将在 Django 5.0 中删除。

这些在逻辑上等同于 Trunc('date_field', kind)。它们截断日期的所有部分,直至 kind,允许以较低的精度对日期进行分组或过滤。expression 可以有一个 output_fieldDateFieldDateTimeField

由于 DateField 没有时间部分,只有处理日期部分的 Trunc 子类才能与 DateField 使用:

  1. >>> from datetime import datetime, timezone
  2. >>> from django.db.models import Count
  3. >>> from django.db.models.functions import TruncMonth, TruncYear
  4. >>> start1 = datetime(2014, 6, 15, 14, 30, 50, 321, tzinfo=timezone.utc)
  5. >>> start2 = datetime(2015, 6, 15, 14, 40, 2, 123, tzinfo=timezone.utc)
  6. >>> start3 = datetime(2015, 12, 31, 17, 5, 27, 999, tzinfo=timezone.utc)
  7. >>> Experiment.objects.create(start_datetime=start1, start_date=start1.date())
  8. >>> Experiment.objects.create(start_datetime=start2, start_date=start2.date())
  9. >>> Experiment.objects.create(start_datetime=start3, start_date=start3.date())
  10. >>> experiments_per_year = Experiment.objects.annotate(
  11. ... year=TruncYear('start_date')).values('year').annotate(
  12. ... experiments=Count('id'))
  13. >>> for exp in experiments_per_year:
  14. ... print(exp['year'], exp['experiments'])
  15. ...
  16. 2014-01-01 1
  17. 2015-01-01 2
  18. >>> import zoneinfo
  19. >>> melb = zoneinfo.ZoneInfo('Australia/Melbourne')
  20. >>> experiments_per_month = Experiment.objects.annotate(
  21. ... month=TruncMonth('start_datetime', tzinfo=melb)).values('month').annotate(
  22. ... experiments=Count('id'))
  23. >>> for exp in experiments_per_month:
  24. ... print(exp['month'], exp['experiments'])
  25. ...
  26. 2015-06-01 00:00:00+10:00 1
  27. 2016-01-01 00:00:00+11:00 1
  28. 2014-06-01 00:00:00+10:00 1

DateTimeField 截断

class TruncDate(expression, tzinfo=None, \*extra*)

  • lookup_name = 'date'

  • output_field = DateField()

TruncDateexpression 投射到一个日期,而不是使用内置的 SQL truncate 函数。在 DateTimeField 上,它也被注册为 __date 的转换。

class TruncTime(expression, tzinfo=None, \*extra*)

  • lookup_name = 'time'

  • output_field = TimeField()

TruncTimeexpression 投射到一个时间,而不是使用内置的 SQL truncate 函数。在 DateTimeField 上,它也被注册为 __time 的转换。

class TruncDay(expression, output_field=None, tzinfo=None, is_dst=None, \*extra*)

  • kind = 'day'

class TruncHour(expression, output_field=None, tzinfo=None, is_dst=None, \*extra*)

  • kind = 'hour'

class TruncMinute(expression, output_field=None, tzinfo=None, is_dst=None, \*extra*)

  • kind = 'minute'

class TruncSecond(expression, output_field=None, tzinfo=None, is_dst=None, \*extra*)

  • kind = 'second'

4.0 版后已移除: is_dst 参数已被废弃,将在 Django 5.0 中删除。

这些在逻辑上等同于 Trunc('datetime_field', kind)。它们截断日期的所有部分,直至 kind,并允许以较低的精度对日期时间进行分组或过滤。expression 必须有一个 output_fieldDateTimeField

使用实例:

  1. >>> from datetime import date, datetime, timezone
  2. >>> from django.db.models import Count
  3. >>> from django.db.models.functions import (
  4. ... TruncDate, TruncDay, TruncHour, TruncMinute, TruncSecond,
  5. ... )
  6. >>> import zoneinfo
  7. >>> start1 = datetime(2014, 6, 15, 14, 30, 50, 321, tzinfo=timezone.utc)
  8. >>> Experiment.objects.create(start_datetime=start1, start_date=start1.date())
  9. >>> melb = zoneinfo.ZoneInfo('Australia/Melbourne')
  10. >>> Experiment.objects.annotate(
  11. ... date=TruncDate('start_datetime'),
  12. ... day=TruncDay('start_datetime', tzinfo=melb),
  13. ... hour=TruncHour('start_datetime', tzinfo=melb),
  14. ... minute=TruncMinute('start_datetime'),
  15. ... second=TruncSecond('start_datetime'),
  16. ... ).values('date', 'day', 'hour', 'minute', 'second').get()
  17. {'date': datetime.date(2014, 6, 15),
  18. 'day': datetime.datetime(2014, 6, 16, 0, 0, tzinfo=zoneinfo.ZoneInfo('Australia/Melbourne')),
  19. 'hour': datetime.datetime(2014, 6, 16, 0, 0, tzinfo=zoneinfo.ZoneInfo('Australia/Melbourne')),
  20. 'minute': 'minute': datetime.datetime(2014, 6, 15, 14, 30, tzinfo=zoneinfo.ZoneInfo('UTC')),
  21. 'second': datetime.datetime(2014, 6, 15, 14, 30, 50, tzinfo=zoneinfo.ZoneInfo('UTC'))
  22. }

TimeField 截断

class TruncHour(expression, output_field=None, tzinfo=None, is_dst=None, \*extra*)

  • kind = 'hour'

class TruncMinute(expression, output_field=None, tzinfo=None, is_dst=None, \*extra*)

  • kind = 'minute'

class TruncSecond(expression, output_field=None, tzinfo=None, is_dst=None, \*extra*)

  • kind = 'second'

4.0 版后已移除: is_dst 参数已被废弃,将在 Django 5.0 中删除。

这些在逻辑上等同于 Trunc('time_field', kind)。它们截断时间的所有部分,直至 kind,这就允许以较低的精度对时间进行分组或过滤。expression 可以有一个 output_fieldTimeFieldDateTimeField

由于 TimeField 没有日期部分,只有处理时间部分的 Trunc 子类可以与 TimeField 使用:

  1. >>> from datetime import datetime, timezone
  2. >>> from django.db.models import Count, TimeField
  3. >>> from django.db.models.functions import TruncHour
  4. >>> start1 = datetime(2014, 6, 15, 14, 30, 50, 321, tzinfo=timezone.utc)
  5. >>> start2 = datetime(2014, 6, 15, 14, 40, 2, 123, tzinfo=timezone.utc)
  6. >>> start3 = datetime(2015, 12, 31, 17, 5, 27, 999, tzinfo=timezone.utc)
  7. >>> Experiment.objects.create(start_datetime=start1, start_time=start1.time())
  8. >>> Experiment.objects.create(start_datetime=start2, start_time=start2.time())
  9. >>> Experiment.objects.create(start_datetime=start3, start_time=start3.time())
  10. >>> experiments_per_hour = Experiment.objects.annotate(
  11. ... hour=TruncHour('start_datetime', output_field=TimeField()),
  12. ... ).values('hour').annotate(experiments=Count('id'))
  13. >>> for exp in experiments_per_hour:
  14. ... print(exp['hour'], exp['experiments'])
  15. ...
  16. 14:00:00 2
  17. 17:00:00 1
  18. >>> import zoneinfo
  19. >>> melb = zoneinfo.ZoneInfo('Australia/Melbourne')
  20. >>> experiments_per_hour = Experiment.objects.annotate(
  21. ... hour=TruncHour('start_datetime', tzinfo=melb),
  22. ... ).values('hour').annotate(experiments=Count('id'))
  23. >>> for exp in experiments_per_hour:
  24. ... print(exp['hour'], exp['experiments'])
  25. ...
  26. 2014-06-16 00:00:00+10:00 2
  27. 2016-01-01 04:00:00+11:00 1

数学函数

我们将在数学函数实例中使用以下模型:

  1. class Vector(models.Model):
  2. x = models.FloatField()
  3. y = models.FloatField()

Abs

class Abs(expression, \*extra*)

返回一个数值字段或表达式的绝对值。

使用实例:

  1. >>> from django.db.models.functions import Abs
  2. >>> Vector.objects.create(x=-0.5, y=1.1)
  3. >>> vector = Vector.objects.annotate(x_abs=Abs('x'), y_abs=Abs('y')).get()
  4. >>> vector.x_abs, vector.y_abs
  5. (0.5, 1.1)

也可以注册为变换。例如:

  1. >>> from django.db.models import FloatField
  2. >>> from django.db.models.functions import Abs
  3. >>> FloatField.register_lookup(Abs)
  4. >>> # Get vectors inside the unit cube
  5. >>> vectors = Vector.objects.filter(x__abs__lt=1, y__abs__lt=1)

ACos

class ACos(expression, \*extra*)

返回一个数值字段或表达式的余弦值。表达式的值必须在 -1 到 1 的范围内。

使用实例:

  1. >>> from django.db.models.functions import ACos
  2. >>> Vector.objects.create(x=0.5, y=-0.9)
  3. >>> vector = Vector.objects.annotate(x_acos=ACos('x'), y_acos=ACos('y')).get()
  4. >>> vector.x_acos, vector.y_acos
  5. (1.0471975511965979, 2.6905658417935308)

也可以注册为变换。例如:

  1. >>> from django.db.models import FloatField
  2. >>> from django.db.models.functions import ACos
  3. >>> FloatField.register_lookup(ACos)
  4. >>> # Get vectors whose arccosine is less than 1
  5. >>> vectors = Vector.objects.filter(x__acos__lt=1, y__acos__lt=1)

ASin

class ASin(expression, \*extra*)

返回一个数值字段或表达式的正弦值。表达式的值必须在 -1 到 1 的范围内。

使用实例:

  1. >>> from django.db.models.functions import ASin
  2. >>> Vector.objects.create(x=0, y=1)
  3. >>> vector = Vector.objects.annotate(x_asin=ASin('x'), y_asin=ASin('y')).get()
  4. >>> vector.x_asin, vector.y_asin
  5. (0.0, 1.5707963267948966)

也可以注册为变换。例如:

  1. >>> from django.db.models import FloatField
  2. >>> from django.db.models.functions import ASin
  3. >>> FloatField.register_lookup(ASin)
  4. >>> # Get vectors whose arcsine is less than 1
  5. >>> vectors = Vector.objects.filter(x__asin__lt=1, y__asin__lt=1)

ATan

class ATan(expression, \*extra*)

返回一个数值字段或表达式的正切值。

使用实例:

  1. >>> from django.db.models.functions import ATan
  2. >>> Vector.objects.create(x=3.12, y=6.987)
  3. >>> vector = Vector.objects.annotate(x_atan=ATan('x'), y_atan=ATan('y')).get()
  4. >>> vector.x_atan, vector.y_atan
  5. (1.2606282660069106, 1.428638798133829)

也可以注册为变换。例如:

  1. >>> from django.db.models import FloatField
  2. >>> from django.db.models.functions import ATan
  3. >>> FloatField.register_lookup(ATan)
  4. >>> # Get vectors whose arctangent is less than 2
  5. >>> vectors = Vector.objects.filter(x__atan__lt=2, y__atan__lt=2)

ATan2

class ATan2(expression1, expression2, \*extra*)

返回 expression1 / expression2 的正切值。

使用实例:

  1. >>> from django.db.models.functions import ATan2
  2. >>> Vector.objects.create(x=2.5, y=1.9)
  3. >>> vector = Vector.objects.annotate(atan2=ATan2('x', 'y')).get()
  4. >>> vector.atan2
  5. 0.9209258773829491

Ceil

class Ceil(expression, \*extra*)

返回大于或等于一个数值字段或表达式的最小整数。

使用实例:

  1. >>> from django.db.models.functions import Ceil
  2. >>> Vector.objects.create(x=3.12, y=7.0)
  3. >>> vector = Vector.objects.annotate(x_ceil=Ceil('x'), y_ceil=Ceil('y')).get()
  4. >>> vector.x_ceil, vector.y_ceil
  5. (4.0, 7.0)

也可以注册为变换。例如:

  1. >>> from django.db.models import FloatField
  2. >>> from django.db.models.functions import Ceil
  3. >>> FloatField.register_lookup(Ceil)
  4. >>> # Get vectors whose ceil is less than 10
  5. >>> vectors = Vector.objects.filter(x__ceil__lt=10, y__ceil__lt=10)

Cos

class Cos(expression, \*extra*)

返回一个数值字段或表达式的余弦值。

使用实例:

  1. >>> from django.db.models.functions import Cos
  2. >>> Vector.objects.create(x=-8.0, y=3.1415926)
  3. >>> vector = Vector.objects.annotate(x_cos=Cos('x'), y_cos=Cos('y')).get()
  4. >>> vector.x_cos, vector.y_cos
  5. (-0.14550003380861354, -0.9999999999999986)

也可以注册为变换。例如:

  1. >>> from django.db.models import FloatField
  2. >>> from django.db.models.functions import Cos
  3. >>> FloatField.register_lookup(Cos)
  4. >>> # Get vectors whose cosine is less than 0.5
  5. >>> vectors = Vector.objects.filter(x__cos__lt=0.5, y__cos__lt=0.5)

Cot

class Cot(expression, \*extra*)

返回数值字段或表达式的正切值。

使用实例:

  1. >>> from django.db.models.functions import Cot
  2. >>> Vector.objects.create(x=12.0, y=1.0)
  3. >>> vector = Vector.objects.annotate(x_cot=Cot('x'), y_cot=Cot('y')).get()
  4. >>> vector.x_cot, vector.y_cot
  5. (-1.5726734063976826, 0.642092615934331)

也可以注册为变换。例如:

  1. >>> from django.db.models import FloatField
  2. >>> from django.db.models.functions import Cot
  3. >>> FloatField.register_lookup(Cot)
  4. >>> # Get vectors whose cotangent is less than 1
  5. >>> vectors = Vector.objects.filter(x__cot__lt=1, y__cot__lt=1)

Degrees

class Degrees(expression, \*extra*)

将数值字段或表达式从弧度转换为度。

使用实例:

  1. >>> from django.db.models.functions import Degrees
  2. >>> Vector.objects.create(x=-1.57, y=3.14)
  3. >>> vector = Vector.objects.annotate(x_d=Degrees('x'), y_d=Degrees('y')).get()
  4. >>> vector.x_d, vector.y_d
  5. (-89.95437383553924, 179.9087476710785)

也可以注册为变换。例如:

  1. >>> from django.db.models import FloatField
  2. >>> from django.db.models.functions import Degrees
  3. >>> FloatField.register_lookup(Degrees)
  4. >>> # Get vectors whose degrees are less than 360
  5. >>> vectors = Vector.objects.filter(x__degrees__lt=360, y__degrees__lt=360)

Exp

class Exp(expression, \*extra*)

返回 e (自然对数基数)的值,将其升为一个数值字段或表达式的幂。

使用实例:

  1. >>> from django.db.models.functions import Exp
  2. >>> Vector.objects.create(x=5.4, y=-2.0)
  3. >>> vector = Vector.objects.annotate(x_exp=Exp('x'), y_exp=Exp('y')).get()
  4. >>> vector.x_exp, vector.y_exp
  5. (221.40641620418717, 0.1353352832366127)

也可以注册为变换。例如:

  1. >>> from django.db.models import FloatField
  2. >>> from django.db.models.functions import Exp
  3. >>> FloatField.register_lookup(Exp)
  4. >>> # Get vectors whose exp() is greater than 10
  5. >>> vectors = Vector.objects.filter(x__exp__gt=10, y__exp__gt=10)

Floor

class Floor(expression, \*extra*)

返回不大于数值字段或表达式的最大整数值。

使用实例:

  1. >>> from django.db.models.functions import Floor
  2. >>> Vector.objects.create(x=5.4, y=-2.3)
  3. >>> vector = Vector.objects.annotate(x_floor=Floor('x'), y_floor=Floor('y')).get()
  4. >>> vector.x_floor, vector.y_floor
  5. (5.0, -3.0)

也可以注册为变换。例如:

  1. >>> from django.db.models import FloatField
  2. >>> from django.db.models.functions import Floor
  3. >>> FloatField.register_lookup(Floor)
  4. >>> # Get vectors whose floor() is greater than 10
  5. >>> vectors = Vector.objects.filter(x__floor__gt=10, y__floor__gt=10)

Ln

class Ln(expression, \*extra*)

返回一个数值字段或表达式的自然对数。

使用实例:

  1. >>> from django.db.models.functions import Ln
  2. >>> Vector.objects.create(x=5.4, y=233.0)
  3. >>> vector = Vector.objects.annotate(x_ln=Ln('x'), y_ln=Ln('y')).get()
  4. >>> vector.x_ln, vector.y_ln
  5. (1.6863989535702288, 5.4510384535657)

也可以注册为变换。例如:

  1. >>> from django.db.models import FloatField
  2. >>> from django.db.models.functions import Ln
  3. >>> FloatField.register_lookup(Ln)
  4. >>> # Get vectors whose value greater than e
  5. >>> vectors = Vector.objects.filter(x__ln__gt=1, y__ln__gt=1)

Log

class Log(expression1, expression2, \*extra*)

接受两个数字字段或表达式,并返回第一个字段的对数到第二个字段的基数。

使用实例:

  1. >>> from django.db.models.functions import Log
  2. >>> Vector.objects.create(x=2.0, y=4.0)
  3. >>> vector = Vector.objects.annotate(log=Log('x', 'y')).get()
  4. >>> vector.log
  5. 2.0

Mod

class Mod(expression1, expression2, \*extra*)

接受两个数值字段或表达式,并返回第一个字段除以第二个字段的余数(模数运算)。

使用实例:

  1. >>> from django.db.models.functions import Mod
  2. >>> Vector.objects.create(x=5.4, y=2.3)
  3. >>> vector = Vector.objects.annotate(mod=Mod('x', 'y')).get()
  4. >>> vector.mod
  5. 0.8

Pi

class Pi(\*extra*)

返回数学常数 π 的值。

Power

class Power(expression1, expression2, \*extra*)

接受两个数值字段或表达式,并将第一个字段的值提高到第二个字段的幂。

使用实例:

  1. >>> from django.db.models.functions import Power
  2. >>> Vector.objects.create(x=2, y=-2)
  3. >>> vector = Vector.objects.annotate(power=Power('x', 'y')).get()
  4. >>> vector.power
  5. 0.25

Radians

class Radians(expression, \*extra*)

将数值字段或表达式从度数转换为弧度。

使用实例:

  1. >>> from django.db.models.functions import Radians
  2. >>> Vector.objects.create(x=-90, y=180)
  3. >>> vector = Vector.objects.annotate(x_r=Radians('x'), y_r=Radians('y')).get()
  4. >>> vector.x_r, vector.y_r
  5. (-1.5707963267948966, 3.141592653589793)

也可以注册为变换。例如:

  1. >>> from django.db.models import FloatField
  2. >>> from django.db.models.functions import Radians
  3. >>> FloatField.register_lookup(Radians)
  4. >>> # Get vectors whose radians are less than 1
  5. >>> vectors = Vector.objects.filter(x__radians__lt=1, y__radians__lt=1)

Random

class Random(\*extra*)

Returns a random value in the range 0.0 ≤ x < 1.0.

Round

class Round(expression, precision=0, \*extra*)

Rounds a numeric field or expression to precision (must be an integer) decimal places. By default, it rounds to the nearest integer. Whether half values are rounded up or down depends on the database.

使用实例:

  1. >>> from django.db.models.functions import Round
  2. >>> Vector.objects.create(x=5.4, y=-2.37)
  3. >>> vector = Vector.objects.annotate(x_r=Round('x'), y_r=Round('y', precision=1)).get()
  4. >>> vector.x_r, vector.y_r
  5. (5.0, -2.4)

也可以注册为变换。例如:

  1. >>> from django.db.models import FloatField
  2. >>> from django.db.models.functions import Round
  3. >>> FloatField.register_lookup(Round)
  4. >>> # Get vectors whose round() is less than 20
  5. >>> vectors = Vector.objects.filter(x__round__lt=20, y__round__lt=20)

Changed in Django 4.0:

The precision argument was added.

Sign

class Sign(expression, \*extra*)

返回一个数字字段或表达式的符号(-1,0,1)。

使用实例:

  1. >>> from django.db.models.functions import Sign
  2. >>> Vector.objects.create(x=5.4, y=-2.3)
  3. >>> vector = Vector.objects.annotate(x_sign=Sign('x'), y_sign=Sign('y')).get()
  4. >>> vector.x_sign, vector.y_sign
  5. (1, -1)

也可以注册为变换。例如:

  1. >>> from django.db.models import FloatField
  2. >>> from django.db.models.functions import Sign
  3. >>> FloatField.register_lookup(Sign)
  4. >>> # Get vectors whose signs of components are less than 0.
  5. >>> vectors = Vector.objects.filter(x__sign__lt=0, y__sign__lt=0)

Sin

class Sin(expression, \*extra*)

返回一个数值字段或表达式的正弦值。

使用实例:

  1. >>> from django.db.models.functions import Sin
  2. >>> Vector.objects.create(x=5.4, y=-2.3)
  3. >>> vector = Vector.objects.annotate(x_sin=Sin('x'), y_sin=Sin('y')).get()
  4. >>> vector.x_sin, vector.y_sin
  5. (-0.7727644875559871, -0.7457052121767203)

也可以注册为变换。例如:

  1. >>> from django.db.models import FloatField
  2. >>> from django.db.models.functions import Sin
  3. >>> FloatField.register_lookup(Sin)
  4. >>> # Get vectors whose sin() is less than 0
  5. >>> vectors = Vector.objects.filter(x__sin__lt=0, y__sin__lt=0)

Sqrt

class Sqrt(expression, \*extra*)

返回一个非负数值字段或表达式的平方根。

使用实例:

  1. >>> from django.db.models.functions import Sqrt
  2. >>> Vector.objects.create(x=4.0, y=12.0)
  3. >>> vector = Vector.objects.annotate(x_sqrt=Sqrt('x'), y_sqrt=Sqrt('y')).get()
  4. >>> vector.x_sqrt, vector.y_sqrt
  5. (2.0, 3.46410)

也可以注册为变换。例如:

  1. >>> from django.db.models import FloatField
  2. >>> from django.db.models.functions import Sqrt
  3. >>> FloatField.register_lookup(Sqrt)
  4. >>> # Get vectors whose sqrt() is less than 5
  5. >>> vectors = Vector.objects.filter(x__sqrt__lt=5, y__sqrt__lt=5)

Tan

class Tan(expression, \*extra*)

返回一个数值字段或表达式的正切值。

使用实例:

  1. >>> from django.db.models.functions import Tan
  2. >>> Vector.objects.create(x=0, y=12)
  3. >>> vector = Vector.objects.annotate(x_tan=Tan('x'), y_tan=Tan('y')).get()
  4. >>> vector.x_tan, vector.y_tan
  5. (0.0, -0.6358599286615808)

也可以注册为变换。例如:

  1. >>> from django.db.models import FloatField
  2. >>> from django.db.models.functions import Tan
  3. >>> FloatField.register_lookup(Tan)
  4. >>> # Get vectors whose tangent is less than 0
  5. >>> vectors = Vector.objects.filter(x__tan__lt=0, y__tan__lt=0)

文本函数

Chr

class Chr(expression, \*extra*)

接受一个数值字段或表达式,并将表达式的文本表示形式作为单个字符返回。它的工作原理与 Python 的 chr() 函数相同。

Length 一样,它也可以在 IntegerField 上作为变换注册。默认的查询名是 chr

使用实例:

  1. >>> from django.db.models.functions import Chr
  2. >>> Author.objects.create(name='Margaret Smith')
  3. >>> author = Author.objects.filter(name__startswith=Chr(ord('M'))).get()
  4. >>> print(author.name)
  5. Margaret Smith

Concat

class Concat(\expressions, **extra*)

接受至少两个文本字段或表达式的列表,并返回连接后的文本。每个参数必须是文本或字符类型。如果你想把一个 TextField() 和一个 CharField() 连接起来,那么一定要告诉 Django,output_field 应该是一个 TextField()。当连接一个 Value 时,也需要指定一个 output_field,如下面的例子。

这个函数永远不会有一个空的结果。在后端,如果一个空参数导致整个表达式为空,Django 会确保每个空的部分先转换成空字符串。

使用实例:

  1. >>> # Get the display name as "name (goes_by)"
  2. >>> from django.db.models import CharField, Value as V
  3. >>> from django.db.models.functions import Concat
  4. >>> Author.objects.create(name='Margaret Smith', goes_by='Maggie')
  5. >>> author = Author.objects.annotate(
  6. ... screen_name=Concat(
  7. ... 'name', V(' ('), 'goes_by', V(')'),
  8. ... output_field=CharField()
  9. ... )
  10. ... ).get()
  11. >>> print(author.screen_name)
  12. Margaret Smith (Maggie)

Left

class Left(expression, length, \*extra*)

返回给定文本字段或表达式的第一个 length 字符。

使用实例:

  1. >>> from django.db.models.functions import Left
  2. >>> Author.objects.create(name='Margaret Smith')
  3. >>> author = Author.objects.annotate(first_initial=Left('name', 1)).get()
  4. >>> print(author.first_initial)
  5. M

Length

class Length(expression, \*extra*)

接受单个文本字段或表达式,并返回值的字符数。如果表达式为空,则长度也为空。

使用实例:

  1. >>> # Get the length of the name and goes_by fields
  2. >>> from django.db.models.functions import Length
  3. >>> Author.objects.create(name='Margaret Smith')
  4. >>> author = Author.objects.annotate(
  5. ... name_length=Length('name'),
  6. ... goes_by_length=Length('goes_by')).get()
  7. >>> print(author.name_length, author.goes_by_length)
  8. (14, None)

也可以注册为变换。例如:

  1. >>> from django.db.models import CharField
  2. >>> from django.db.models.functions import Length
  3. >>> CharField.register_lookup(Length)
  4. >>> # Get authors whose name is longer than 7 characters
  5. >>> authors = Author.objects.filter(name__length__gt=7)

Lower

class Lower(expression, \*extra*)

接受单个文本字段或表达式,并返回小写表示。

它也可以像 Length 中描述的那样,作为一个变换注册。

使用实例:

  1. >>> from django.db.models.functions import Lower
  2. >>> Author.objects.create(name='Margaret Smith')
  3. >>> author = Author.objects.annotate(name_lower=Lower('name')).get()
  4. >>> print(author.name_lower)
  5. margaret smith

LPad

class LPad(expression, length, fill_text=Value(‘ ‘), \*extra*)

返回给定的文本字段或表达式的值,在左侧用 fill_text 填充,使结果是 length 字符长。默认的 fill_text 是一个空格。

使用实例:

  1. >>> from django.db.models import Value
  2. >>> from django.db.models.functions import LPad
  3. >>> Author.objects.create(name='John', alias='j')
  4. >>> Author.objects.update(name=LPad('name', 8, Value('abc')))
  5. 1
  6. >>> print(Author.objects.get(alias='j').name)
  7. abcaJohn

LTrim

class LTrim(expression, \*extra*)

类似于 Trim,但只删除前导空格。

MD5

class MD5(expression, \*extra*)

接受单个文本字段或表达式,并返回字符串的 MD5 哈希值。

它也可以像 Length 中描述的那样,作为一个变换注册。

使用实例:

  1. >>> from django.db.models.functions import MD5
  2. >>> Author.objects.create(name='Margaret Smith')
  3. >>> author = Author.objects.annotate(name_md5=MD5('name')).get()
  4. >>> print(author.name_md5)
  5. 749fb689816b2db85f5b169c2055b247

Ord

class Ord(expression, \*extra*)

接受一个文本字段或表达式,并返回该表达式第一个字符的 Unicode 码点值。它的工作原理类似于 Python 的 ord() 函数,但如果表达式超过一个字符,则不会引发异常。

也可以像 Length 中描述的那样,把它注册为一个变换。默认的查找名称是 ord

使用实例:

  1. >>> from django.db.models.functions import Ord
  2. >>> Author.objects.create(name='Margaret Smith')
  3. >>> author = Author.objects.annotate(name_code_point=Ord('name')).get()
  4. >>> print(author.name_code_point)
  5. 77

Repeat

class Repeat(expression, number, \*extra*)

返回给定文本字段或表达式重复 number 次数的值。

使用实例:

  1. >>> from django.db.models.functions import Repeat
  2. >>> Author.objects.create(name='John', alias='j')
  3. >>> Author.objects.update(name=Repeat('name', 3))
  4. 1
  5. >>> print(Author.objects.get(alias='j').name)
  6. JohnJohnJohn

Replace

class Replace(expression, text, replacement=Value(‘’), \*extra*)

expression 中用 replacement 替换所有出现的 text。默认替换文本是空字符串。函数的参数是区分大小写的。

使用实例:

  1. >>> from django.db.models import Value
  2. >>> from django.db.models.functions import Replace
  3. >>> Author.objects.create(name='Margaret Johnson')
  4. >>> Author.objects.create(name='Margaret Smith')
  5. >>> Author.objects.update(name=Replace('name', Value('Margaret'), Value('Margareth')))
  6. 2
  7. >>> Author.objects.values('name')
  8. <QuerySet [{'name': 'Margareth Johnson'}, {'name': 'Margareth Smith'}]>

Reverse

class Reverse(expression, \*extra*)

接受单个文本字段或表达式,并将该表达式的字符按相反顺序返回。

也可以像 Length 中描述的那样,把它注册为一个变换。默认的查询名称是 reverse

使用实例:

  1. >>> from django.db.models.functions import Reverse
  2. >>> Author.objects.create(name='Margaret Smith')
  3. >>> author = Author.objects.annotate(backward=Reverse('name')).get()
  4. >>> print(author.backward)
  5. htimS teragraM

Right

class Right(expression, length, \*extra*)

返回给定文本字段或表达式的最后 length 字符。

使用实例:

  1. >>> from django.db.models.functions import Right
  2. >>> Author.objects.create(name='Margaret Smith')
  3. >>> author = Author.objects.annotate(last_letter=Right('name', 1)).get()
  4. >>> print(author.last_letter)
  5. h

RPad

class RPad(expression, length, fill_text=Value(‘ ‘), \*extra*)

类似于 LPad,但垫在右边。

RTrim

class RTrim(expression, \*extra*)

类似于 Trim,但只删除尾部的空格。

SHA1、SHA224`、SHA256`、SHA384` 和 SHA512

class SHA1(expression, \*extra*)

class SHA224(expression, \*extra*)

class SHA256(expression, \*extra*)

class SHA384(expression, \*extra*)

class SHA512(expression, \*extra*)

接受单个文本字段或表达式,并返回字符串的特定哈希值。

它们也可以像 Length 中描述的那样注册为变换。

使用实例:

  1. >>> from django.db.models.functions import SHA1
  2. >>> Author.objects.create(name='Margaret Smith')
  3. >>> author = Author.objects.annotate(name_sha1=SHA1('name')).get()
  4. >>> print(author.name_sha1)
  5. b87efd8a6c991c390be5a68e8a7945a7851c7e5c

PostgreSQL

必须安装 pgcrypto 扩展 。你可以使用 CryptoExtension 迁移操作来安装它。

Oracle

Oracle 不支持 SHA224 函数。

StrIndex

class StrIndex(string, substring, \*extra*)

返回一个正整数,对应于 string 中第一次出现的 substring 的 1 个索引位置,如果没有找到 substring,则返回 0。

使用实例:

  1. >>> from django.db.models import Value as V
  2. >>> from django.db.models.functions import StrIndex
  3. >>> Author.objects.create(name='Margaret Smith')
  4. >>> Author.objects.create(name='Smith, Margaret')
  5. >>> Author.objects.create(name='Margaret Jackson')
  6. >>> Author.objects.filter(name='Margaret Jackson').annotate(
  7. ... smith_index=StrIndex('name', V('Smith'))
  8. ... ).get().smith_index
  9. 0
  10. >>> authors = Author.objects.annotate(
  11. ... smith_index=StrIndex('name', V('Smith'))
  12. ... ).filter(smith_index__gt=0)
  13. <QuerySet [<Author: Margaret Smith>, <Author: Smith, Margaret>]>

警告

在 MySQL 中,数据库表的 字符序 决定了字符串比较(如本函数的 expressionsubstring)是否区分大小写。默认情况下,比较是不区分大小写的。

Substr

class Substr(expression, pos, length=None, \*extra*)

从字段或表达式的位置 pos 开始返回一个长度为 length 的子串。如果 lengthNone,那么将返回字符串的其余部分。

使用实例:

  1. >>> # Set the alias to the first 5 characters of the name as lowercase
  2. >>> from django.db.models.functions import Lower, Substr
  3. >>> Author.objects.create(name='Margaret Smith')
  4. >>> Author.objects.update(alias=Lower(Substr('name', 1, 5)))
  5. 1
  6. >>> print(Author.objects.get(name='Margaret Smith').alias)
  7. marga

Trim

class Trim(expression, \*extra*)

返回给定的文本字段或表达式的值,并去除前导和尾部的空格。

使用实例:

  1. >>> from django.db.models.functions import Trim
  2. >>> Author.objects.create(name=' John ', alias='j')
  3. >>> Author.objects.update(name=Trim('name'))
  4. 1
  5. >>> print(Author.objects.get(alias='j').name)
  6. John

Upper

class Upper(expression, \*extra*)

接受单个文本字段或表达式,并返回大写表示。

它也可以像 Length 中描述的那样,作为一个变换注册。

使用实例:

  1. >>> from django.db.models.functions import Upper
  2. >>> Author.objects.create(name='Margaret Smith')
  3. >>> author = Author.objects.annotate(name_upper=Upper('name')).get()
  4. >>> print(author.name_upper)
  5. MARGARET SMITH

窗口函数

Window 表达式中,有很多函数可以用来计算元素的等级或某些行的 Ntile

CumeDist

class CumeDist(\expressions, **extra*)

计算一个窗口或分区内的数值的累积分布。累计分布被定义为当前行之前的行数或同行行数除以框架中的总行数。

DenseRank

class DenseRank(\expressions, **extra*)

相当于 Rank,但没有间隙。

FirstValue

class FirstValue(expression, \*extra*)

返回窗口帧第一行的值,如果没有这个值,则返回 None

Lag

class Lag(expression, offset=1, default=None, \*extra*)

计算 offset 的偏移值,如果没有行存在,返回 default

default 必须与 expression 具有相同的类型,但是,这只由数据库验证,而不是在 Python 中验证。

MariaDB 和 default

MariaDB 不支持 这个 default 参数。

LastValue

class LastValue(expression, \*extra*)

类似于 FirstValue,它计算给定框架子句中的最后一个值。

Lead

class Lead(expression, offset=1, default=None, \*extra*)

计算给定 frame 中的前导值。offsetdefault 都是根据当前行的情况来计算的。

default 必须与 expression 具有相同的类型,但是,这只由数据库验证,而不是在 Python 中验证。

MariaDB 和 default

MariaDB 不支持 这个 default 参数。

NthValue

class NthValue(expression, nth=1, \*extra*)

计算相对于窗口内偏移量 nth (必须是正值)的行。如果没有行,返回 None

一些数据库可能会以不同的方式处理不存在的 nth-value,例如,对于基于字符的表达式,Oracle 会返回一个空字符串,而不是 None。在这些情况下,Django 不做任何转换。

Ntile

class Ntile(num_buckets=1, \*extra*)

为帧子句中的每一行计算一个分区,在 1 和 num_buckets 之间尽可能均匀地分配数字。如果行没有被平均分配到若干个桶中,则一个或多个桶将被更频繁地表示。

PercentRank

class PercentRank(\expressions, **extra*)

计算帧子句中行的百分位数。这个计算相当于执行:

  1. (rank - 1) / (total rows - 1)

下表解释了行的百分位数的计算:

行 #排名计算百分比排名
1151(1-1)/(7-1)0.0000
2202(2-1)/(7-1)0.1666
3202(2-1)/(7-1)0.1666
4202(2-1)/(7-1)0.1666
5305(5-1)/(7-1)0.6666
6305(5-1)/(7-1)0.6666
7407(7-1)/(7-1)1.0000

Rank

class Rank(\expressions, **extra*)

RowNumber 类似,该函数对窗口中的行进行排序。计算出的排名包含有空隙。使用 DenseRank 来计算没有空隙的排名。

RowNumber

class RowNumber(\expressions, **extra*)

如果没有对 窗口帧 进行分区,则根据帧子句的顺序或整个查询的顺序计算行数。