Hi I have a string data that has different format of date, I want it to convert in a standard date format.
Please refer to the table below:
| Original Data (String) | Expected Output (Date) |
| 11.20.2020 | 2020-11-20 |
| 20112020 | 2020-11-20 |
| 2020-11-20 | 2020-11-20 |
How can I transform it?