One of the column(file_date) in a table is of type string and has values of dates in DD-MMM-YY format. How do I find min(date) from the column.
I wrote simple query Select min(file_date) from tablename
It gives output as: 01-Dec-22
But there are dates from earlier months present in the table example 28-Aug-22,31-Oct-22,14-Nov-22
The expected output is 28-Aug-22 as this is the earliest date from which data is present in the table.
Oracle:
More about here