当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Django Right用法及代码示例


本文介绍 django.db.models.functions.Right 的用法。

声明

class Right(expression, length, **extra)

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

使用示例:

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

相关用法


注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.db.models.functions.Right。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。