屬性 | SQL元 |
---|---|
__exact | like 'aaa' |
__iexact | 忽略大小寫 ilike 'aaa |
__contains | 包含 like '%aaa%' |
__icontains | 包含 忽略大小寫 ilike '%aaa%' |
__gt | 大於 |
__gte | 大於等於 |
__lt | 小於 |
__lte | 小於等於 |
__in | 存在於一個list範圍內 |
__startswith | 以...開頭 |
__istartswith | 以...開頭 忽略大小寫 |
__endswith | 以...結尾 |
__iendswith | 以...結尾,忽略大小寫 |
__range | 在...範圍內 |
__year | 日期字段的年份 |
__month | 日期字段的月份 |
__day | 日期字段的日 |
__isnull | True/False |
__isnull | True 與 __exact=None的區別 |
User.objects.filter(group_id__contains="12")