Exclude
Posts.objects.exclude(date__month=3)
조건에 속하지 않은 값을 조회
IS NOT, NOT IN
Filter
Posts.objects.filter(date__month__in=[1,2,4,5,6,7,8,9,10,11,12])
조건에 속하는 값을 조회
IS, IN
'Python > Django' 카테고리의 다른 글
[Django] uwsgi + nginx in ubuntu (0) | 2016.10.18 |
---|---|
[Django] Test (0) | 2016.10.12 |
[Django] Extra (0) | 2016.10.06 |
[Django] Custom Model Fields (0) | 2016.09.29 |
[Django] Abstract Model (0) | 2016.09.29 |
댓글