Skip to content

Instantly share code, notes, and snippets.

@KimSoungRyoul
Last active August 19, 2020 13:44
Show Gist options
  • Save KimSoungRyoul/912029a6981f8a630edef5253d1dd155 to your computer and use it in GitHub Desktop.
Save KimSoungRyoul/912029a6981f8a630edef5253d1dd155 to your computer and use it in GitHub Desktop.
from django.db.models.query import QuerySet,RawQuerySet
this_is_raw_queryset: RawQuerySet = Model.objects.raw("select * from model where ~~~~~") # raw()를 선언하면 RawQuerySet
this_is_queryset: QuerySet = Model.objects.filter(~~~~~~) # raw() 이외에는 전부 QuerySet을 반환한다.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment