本文主要列舉一下django orm中的常用查詢的篩選方法:
- 大于、大于等于
- 小于摔吏、小于等于
- in
- like
- is null / is not null
- 不等于/不包含于
- 其他模糊查詢
model:
class User(AbstractBaseUser, PermissionsMixin):
uuid = ShortUUIDField(unique=True)
username = models.CharField(max_length=100, db_index=True, unique=True, default='')
schoolid = models.CharField(max_length=100, null=True, blank=True, default='')
classid = models.CharField(max_length=100, null=True, blank=True, default='')
fullname = models.CharField(max_length=50, default='', null=True, blank=True)
email = models.EmailField(_('email address'), blank=True, null=True)
age = models.SmallIntegerField(default=0)
大于、大于等于
__gt 大于
__gte 大于等于
User.objects.filter(age__gt=10) // 查詢年齡大于10歲的用戶
User.objects.filter(age__gte=10) // 查詢年齡大于等于10歲的用戶
小于溪胶、小于等于
__lt 小于
__lte 小于等于
User.objects.filter(age__lt=10) // 查詢年齡小于10歲的用戶
User.objects.filter(age__lte=10) // 查詢年齡小于等于10歲的用戶
in
__in
查詢年齡在某一范圍的用戶
User.objects.filter(age__in=[10, 20, 30])
like
__exact 精確等于 like 'aaa'
__iexact 精確等于 忽略大小寫 ilike 'aaa'
__contains 包含 like '%aaa%'
__icontains 包含 忽略大小寫 ilike '%aaa%'稳诚,但是對于sqlite來說哗脖,contains的作用效果等同于icontains。
is null / is not null
__isnull 判空
User.objects.filter(username__isnull=True) // 查詢用戶名為空的用戶
User.objects.filter(username__isnull=False) // 查詢用戶名不為空的用戶
不等于/不包含于
User.objects.filter().exclude(age=10) // 查詢年齡不為10的用戶
User.objects.filter().exclude(age__in=[10, 20]) // 查詢年齡不為在 [10, 20] 的用戶
其他模糊查詢
__startswith 以…開頭
__istartswith 以…開頭 忽略大小寫
__endswith 以…結(jié)尾
__iendswith 以…結(jié)尾才避,忽略大小寫
__range 在…范圍內(nèi)
__year 日期字段的年份
__month 日期字段的月份
__day 日期字段的日
更多查詢可參考:django ORM model filter 條件過濾,及多表連接查詢桑逝、反向查詢,某字段的distinct