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.