a varchar column is storing date value in table_a and it looks like '24-May-2021'
now i am trying to select to_date(varchar_column, 'DD/MM/YYYY') from table_a, but was throwing below error:
Can't parse '24-May-2021' as date with format 'DD/MM/YYYY'.
please help