SyntaxFix
Write A Post
Hire A Developer
Questions
You can use STR_TO_DATE() to convert your strings to MySQL date values and ORDER BY the result:
STR_TO_DATE()
ORDER BY
ORDER BY STR_TO_DATE(datestring, '%d/%m/%Y')
However, you would be wise to convert the column to the DATE data type instead of using strings.
DATE