如何使用 Django ORM 仅按日期时间字段中的日期进行查询
我有一个带有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 QuerySet API 参考:
这适用于日期和日期时间。
From the QuerySet API reference:
This works for Dates and DateTimes.
这个查询的问题是,如果你的数据库不支持带有函数的索引(Hello MySQL),那么你的查询就效率低下。
一种替代方法是添加一个新字段
start_date = models.DateField(...)
并重载save(...)
方法以正确设置该字段,或者,如果您更多的是数据库端开发人员,请使用触发器来实现相同的功能,在此之后,您可以执行以下操作: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 yoursave(...)
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: