I have a table in a MySQL database with a field named 'Date', the problem is the date is in the format DD-MM-YYYY so I cannot upload it to MySQL as a DATE type field. Instead the field type is a string. With this in mind, how can I write query that will give this effect -
SELECT * FROM `table`
WHERE (date_field BETWEEN '2010-01-30' AND '2010-09-29')
keeping in mind 'date_field' is not of DATE type, but string.