Django queries code example
Example 1: q django
from django.db.models import Q
Q(question__startswith='Who') | Q(question__startswith='What')
Example 2: django objects.create()
SomeModel.objects.create(firstname='ricky', lastname='ticky')
Example 3: and in django query filter
Blog.objects.filter(entry__headline__contains='Lennon', entry__pub_date__year=2008)
Example 4: objects.filter django
>>> Entry.objects.filter(blog_id=4)
Example 5: create django object
Author.objects.create(name="Joe")
Example 6: django filter values with e and operator
exact
iexact
contains
icontains
in
gt
gte
lt
lte
startswith
istartswith
endswith
iendswith
range
date
year
iso_year
month
day
week
week_day
iso_week_day
quarter
time
hour
minute
second
isnull
regex
iregex