How to sort the table based on date?
I have a column called: mydate. The date is stored in this format: 29/1/2014 (dd/mm/yyyy).
Now i need sqlite to sort the table descending based on the date.
The problem is: How can i do this?
I already tried this but this does not sort anything:
SELECT * FROM my_table ORDER BY date(mydate);