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


Python Django UniqueConstraint.include用法及代码示例


本文介绍 django.db.models.UniqueConstraint.include 的用法。

声明

UniqueConstraint.include
Django 3.2 中的新函数。

要作为非键列包含在覆盖唯一索引中的字段名称的列表或元组。这允许 index-only 扫描用于仅选择包含字段 ( include ) 并仅按唯一字段 ( fields ) 过滤的查询。

例如:

UniqueConstraint(name='unique_booking', fields=['room', 'date'], include=['full_name'])

将允许过滤 roomdate ,同时选择 full_name ,同时仅从索引中获取数据。

include 仅在 PostgreSQL 上受支持。

非键列与 Index.include 具有相同的数据库限制。

相关用法


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