I'm trying to create a SQLite query that will check a column of dates in a table and select only the most recent one. The date format in table is dd/mm/yyyy
SELECT MAX(created) FROM account
That only seems to bring up the date with the highest day number.