如何使用 Django ORM 仅按日期时间字段中的日期进行查询

发布于 2024-10-12 00:24:26 字数 259 浏览 6 评论 0原文

我有一个带有 DataTimeField 的表。我想获取 DateTimeField = 特定日期(忽略时间部分)的所有对象的列表。

SQL 看起来像这样:

select * from tblname where date(start)='2011-01-14'

是否有可能让 ORM 执行这种查询?

我可以执行 start__range(...) 类型的查询,但我想知道是否可以以其他方式执行此操作。

I have a table with a DataTimeField. I'd like to get a list of all the objects where the DateTimeField = a specific day (ignoring the time part).

The SQL would look something like:

select * from tblname where date(start)='2011-01-14'

Is it possible to get the ORM to do this kind of query?

I can do a start__range(...) kind of query, but I was wondering if I could do it the other way.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

红尘作伴 2024-10-19 00:24:26

来自 QuerySet API 参考

Entry.objects.filter(pub_date__year=2005)
Entry.objects.filter(pub_date__month=12)
Entry.objects.filter(pub_date__day=6)

这适用于日期和日期时间。

From the QuerySet API reference:

Entry.objects.filter(pub_date__year=2005)
Entry.objects.filter(pub_date__month=12)
Entry.objects.filter(pub_date__day=6)

This works for Dates and DateTimes.

心安伴我暖 2024-10-19 00:24:26
MyModel.object.filter(start__year=2011, start__month=01, start__day=14)

这个查询的问题是,如果你的数据库不支持带有函数的索引(Hello MySQL),那么你的查询就效率低下。

一种替代方法是添加一个新字段 start_date = models.DateField(...) 并重载 save(...) 方法以正确设置该字段,或者,如果您更多的是数据库端开发人员,请使用触发器来实现相同的功能,在此之后,您可以执行以下操作:

MyModel.object.filter(start_date=date(2011, 1, 13))
MyModel.object.filter(start__year=2011, start__month=01, start__day=14)

the problem with this query is that if your DB dont suport index with functions (Hello MySQL) you have an inneficient query.

One alternative can be that you add a new field start_date = models.DateField(...) and overload your save(...) method to set the field correctly, or if you are more a database side dev, use a trigger for the same function, after this, you can do:

MyModel.object.filter(start_date=date(2011, 1, 13))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文