django where query code example
Example 1: q django
from django.db.models import Q
Q(question__startswith='Who') | Q(question__startswith='What')
Example 2: objects.filter django
>>> Entry.objects.filter(blog_id=4)
Example 3: create django object
Author.objects.create(name="Joe")
Example 4: django filter values with OR operator
Blog.objects.filter(pk__in=[1, 4, 7])