数据库函数

  1. New in Django 1.8.

下面记述的类为用户提供了一些方法,来在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)

我们并不推荐在CharField上允许null=True,以后那位这会允许字段有两个“空值”,但是对于下面的Coalesce示例来说它很重要。

Coalesce

class Coalesce(*expressions, **extra)[source]

接受一个含有至少两个字段名称或表达式的列表,返回第一个非空的值(注意空字符串不被认为是一个空值)。每个参与都必须是相似的类型,所以掺杂了文本和数字的列表会导致数据库错误。

使用范例:

  1. >>> # Get a screen name from least to most public
  2. >>> from django.db.models import Sum, Value as V
  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. >>> aggregated = Author.objects.aggregate(
  11. ... combined_age=Coalesce(Sum('age'), V(0)),
  12. ... combined_age_default=Sum('age'))
  13. >>> print(aggregated['combined_age'])
  14. 0
  15. >>> print(aggregated['combined_age_default'])
  16. None

Concat

class Concat(*expressions, **extra)[source]

接受一个含有至少两个文本字段的或表达式的列表,返回连接后的文本。每个参数都必须是文本或者字符类型。如果你想把一个TextField()和一个CharField()连接, 一定要告诉Djangooutput_field应该为TextField()类型。在下面连接Value的例子中,这也是必需的。

这个函数不会返回null。在后端中,如果一个null参数导致了整个表达式都是null,Django会确保把每个null的部分转换成一个空字符串。

使用范例:

  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('name', V(' ('), 'goes_by', V(')'),
  7. ... output_field=CharField())).get()
  8. >>> print(author.screen_name)
  9. Margaret Smith (Maggie)

Length

class Length(expression, **extra)[source]

接受一个文本字段或表达式,返回值的字符个数。如果表达式是null,长度也会是null

使用范例:

  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)

Lower

class Lower(expression, **extra)[source]

接受一个文本字符串或表达式,返回它的小写表示形式。

使用范例:

  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

Substr

class Substr(expression, pos, length=None, **extra)[source]

返回这个字段或者表达式的,以pos位置开始,长度为length的子字符串。位置从下标为1开始,所以必须大于0。如果lengthNone,会返回剩余的字符串。

使用范例:

  1. >>> # Set the alias to the first 5 characters of the name as lowercase
  2. >>> from django.db.models.functions import Substr, Lower
  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

Upper

class Upper(expression, **extra)[source]

接受一个文本字符串或表达式,返回它的大写表示形式。

使用范例:

  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

译者:Django 文档协作翻译小组,原文:Database Functions

本文以 CC BY-NC-SA 3.0 协议发布,转载请保留作者署名和文章出处。

Django 文档协作翻译小组人手紧缺,有兴趣的朋友可以加入我们,完全公益性质。交流群:467338606。