ids = [1, 3, 6, 7, 9]
for id in ids:
MyModel.objects.filter( pk=id )
이런식으로 리스트의 값들만 filter 에 넣어서 가지고 오고 싶을때.
# Get blogs entries with id 1, 4 and 7 >>> Blog.objects.filter(pk__in=[1,4,7]) # Get all blog entries with id > 14 >>> Blog.objects.filter(pk__gt=14)
__in 을 통해서 가능하다.
출처 :
'Django' 카테고리의 다른 글
django + mariaDB (0) | 2018.04.16 |
---|---|
django 에서 bulk insert (0) | 2018.04.02 |
django query filter, value, distinct (0) | 2018.03.28 |
django query (0) | 2018.03.28 |
[django] ajax 사용해서 화면 수정 (2) | 2018.03.19 |