Select between two dates with Django
I am looking to make a query that selects between dates with Django.
I know how to do this with raw SQL pretty easily, but how could this be achieved using the Django ORM?
This is where I want to add the between dates of 30 days in my query:
start_date = datetime.datetime.now() + datetime.timedelta(-30)
context[self.varname] = self.model._default_manager.filter(
current_issue__isnull=True
).live().order_by('-created_at')
使用__range
运算符:
...filter(current_issue__isnull=True, created_at__range=(start_date, end_date))
__range
下一篇: 用Django选择两个日期