Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I had in my database containing a column of dates stored in string format (varchar) like "12-Mar-2011", "11-Apr-2012", etc. Is there a way to compare these dates in Django?

In models.py, the column is defined as string format. eg:

startdate = models.CharField(max_length=11)

Now I have to compare these dates with a date. Any help is appreciated.

share|improve this question

2 Answers

In your models.py, add a method that returns a datetime object, like this:

from datetime import datetime as dt

class SomeModel(models.Model):
    # other fields

    def startdate_as_date(self):
        return dt.strptime(self.startdate,'%d-%b-%Y')

I've omitted some error checking (like making sure there is a startdate set) and checking if the date is a valid date or not - you should add these later.

Now you can do this:

foo = SomeModel.objects.get(pk=1)
the_date = foo.startdate_as_date()

Now the_date is a datetime object which you can use to do the normal comparisons.

share|improve this answer
Thanks for Quick reply. But now can I use the_date as like obj = SomeModel.filter(the_date__gte=givenDate) ? – sunil reddy Mar 11 at 6:30
No, in order to do that you'll have to do a migration of your database and change the type in the model, as Francis suggested. – Burhan Khalid Mar 11 at 6:33
Now is there any way other than migration as temporary fix for comparing the date stored as strings in database ? – sunil reddy Mar 11 at 7:21

This isn't the answer you are looking for, but...

You really should migrate your DB to using a models.DateField type.

aside from that,

objects = YourModel.objects.raw("""
    SELECT 
        STR_TO_DATE(your_string_date_field, '%e-%b-%Y') AS a_mysql_date_field,
        *
    FROM your_table
    """)

does a raw query to get the string dates as actual mysql dates, maybe you can use it to accomplish whatever it is you are trying to do.

share|improve this answer
What U suggested is 100% right. we have to do migration. But right now I am searching for a temporary fix for this problem. The Problem with raw objects is they cannot be paginated. even we can't write len(obj) for them to write our own paginating functions – sunil reddy Mar 11 at 7:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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