본문 바로가기

Python/Django

Django QuerySet, update objects

728x90
반응형
Django filter update
 
MODELS.objects.filter(username="sample").update(last_name="Kim")
 
  --> 이런식으로 filter로 가져온 여러 row들을 한번에 update로 변경 가능
 
 
별거 아니지만 모르면 forloop 돌면서 수정하고 있을수 있으므로 기억해두자

 

728x90
반응형