I have a date column that has a combination of the two following date types: "YYYYMMDD" and "DD-MMM-YY" I am wanting to convert the column to a "DD/MM/YYYY". Below is an example of what it looks like:
Birth_Day|
20021019 |
20021024 |
24-Oct-02|
26-Oct-02|
I am wanting to convert it to:
Birth_Day |
19/10/2002|
24/10/2002|
24/10/2002|
26/10/2002|