在Django之间选择两个日期 [英] Select between two dates with Django

查看:144
本文介绍了在Django之间选择两个日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我知道如何用原始SQL很容易地做到这一点,但是如何才能实现这一点使用Django ORM?



这是我要在我的查询中添加30天的日期之一:

  start_date = datetime.datetime.now()+ datetime.timedelta(-30)
上下文[self.varname] = self.model._default_manager.filter(
current_issue__isnull = True
).live()。order_by(' - created_at')


解决方案

使用 __范围 操作符:

  ... filter(current_issue__isnull = True,created_at__range =(start_date,end_date))


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')

解决方案

Use the __range operator:

...filter(current_issue__isnull=True, created_at__range=(start_date, end_date))

这篇关于在Django之间选择两个日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆