當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。