up vote 14 down vote favorite
5
share [g+] share [fb]

I am trying to filter a DateTimeField comparing with a date. I mean:

MyObject.objects.filter(datetime_attr=datetime.date(2009,8,22))

I get an empty queryset list as an answer because (I think) I am not considering time, but I want "any time".

Is there an easy way in Django for doing this?

* I have the time in the datetime setted, it is not 00:00.

link|improve this question

25% accept rate
This is one of annoyances of Django. Considering this is a simple and common use case, there's no simple way to achieve this. – rubayeet Nov 25 '10 at 9:59
feedback

6 Answers

Such lookups are implmented in django.views.generic.date_based as follows:

{'date_time_field__range': (datetime.datetime.combine(date, datetime.time.min),
                            datetime.datetime.combine(date, datetime.time.max))} 

Because it is quite verbose there are plans to improve the syntax using __date operator. Check "#9596 Comparing a DateTimeField to a date is too hard" for more details.

link|improve this answer
1  
+1 very helpful answer, thanks! – Van Gale Jan 1 '10 at 0:10
feedback
YourModel.objects.filter(datetime_published__year='2008', 
                         datetime_published__month='03', 
                         datetime_published__day='27')

// edit after comments

YourModel.objects.filter(datetime_published=datetime(2008, 03, 27))

doest not work because it creates a datetime object with time values set to 0, so the time in database doesn't match.

link|improve this answer
This is the correct way. Django documentation ref? – hughdbrown Aug 23 '09 at 4:10
thx for the answer! the first alternative doesn't work with datetimefields. The second alternative works ;). If someone knows another method please answer – Xidobix Aug 23 '09 at 4:14
docs.python.org/library/datetime.html#datetime-objects using datetime() from datetime module hrs,mins,secs is optional. the second is from a working project with vars replaced, you can look in the docs it's correct – zalew Aug 23 '09 at 4:19
i know it is optional, the problem is that my datetimefield has the time setted, it is not 00:00 – Xidobix Aug 23 '09 at 4:22
"the first alternative doesn't work with datetimefields." it'd be quite surprising, as datetime.datetime() returns a datetime object djangoproject.com/documentation/0.96/models/basic check the model definition and examples: pub_date = models.DateTimeField() pub_date=datetime(2005, 7, 30) – zalew Aug 23 '09 at 4:25
show 1 more comment
feedback

This produces the same results as using __year, __month, and __day and seems to work for me:

YourModel.objects.filter(your_datetime_field__startswith=datetime.date(2009,8,22))
link|improve this answer
2  
looks like this one turns date object to string and do a string comparison of dates therefore forces db to do a full table scan. for big tables this one kill your performance – yilmazhuseyin Feb 8 '11 at 12:55
feedback

Hm.. My solution is working:

Mymodel.objects.filter(date_time_field__startswith=datetime.datetime(1986, 7, 28))
link|improve this answer
feedback

See the article Django Documentation

Its very similar to the JZ answer

ur_data_model.objects.filter(ur_date_field=datetime(2005, 7, 27)
link|improve this answer
1  
in the django documentation it works because the datetimefiled has time 00:00 – Xidobix Aug 23 '09 at 4:19
feedback
Model.objects.filter(datetime__year=2011, datetime__month=2, datetime__day=30)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.