本文介绍 django.db.models.UniqueConstraint.include
的用法。
声明
UniqueConstraint.include
Django 3.2 中的新函数。
要作为非键列包含在覆盖唯一索引中的字段名称的列表或元组。这允许 index-only 扫描用于仅选择包含字段 (
) 并仅按唯一字段 (include
) 过滤的查询。fields
例如:
UniqueConstraint(name='unique_booking', fields=['room', 'date'], include=['full_name'])
将允许过滤 room
和 date
,同时选择 full_name
,同时仅从索引中获取数据。
include
仅在 PostgreSQL 上受支持。
非键列与
具有相同的数据库限制。Index.include
相关用法
- Python Django UniqueConstraint.deferrable用法及代码示例
- Python Django UniqueConstraint.condition用法及代码示例
- Python Django UniqueConstraint.expressions用法及代码示例
- Python Django UniqueConstraint.opclasses用法及代码示例
- Python Django Union用法及代码示例
- Python Unicode转ASCII用法及代码示例
- Python Union()用法及代码示例
- Python PIL UnsahrpMask()用法及代码示例
- Python Django UUIDField用法及代码示例
- Python MongoDB Update_one()用法及代码示例
- Python Django USERNAME_FIELD用法及代码示例
- Python Django UserPassesTestMixin.test_func用法及代码示例
- Python Tableau UserItem用法及代码示例
- Python Django Upper用法及代码示例
- Python Django UpdateView.object用法及代码示例
- Python cudf.core.column.string.StringMethods.is_vowel用法及代码示例
- Python torch.distributed.rpc.rpc_async用法及代码示例
- Python torch.nn.InstanceNorm3d用法及代码示例
- Python sklearn.cluster.MiniBatchKMeans用法及代码示例
- Python pandas.arrays.IntervalArray.is_empty用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
- Python numpy.less()用法及代码示例
- Python Matplotlib.figure.Figure.add_gridspec()用法及代码示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代码示例
- Python Django File.save用法及代码示例
注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.db.models.UniqueConstraint.include。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。